Gets the target of the navigation directive;
// Get
export class MyComponent {
...
@ContentChild(IgxDropDownNavigationDirective)
navDirective: IgxDropDownNavigationDirective = null
...
const navTarget: IgxDropDownBaseDirective = navDirective.navTarget
}
Sets the target of the navigation directive; If no valid target is passed, it falls back to the drop down context
<!-- Set -->
<input [igxDropDownItemNavigation]="dropdown" />
...
<igx-drop-down #dropdown>
...
</igx-drop-down>
Captures keydown events and calls the appropriate handlers on the target component
Navigates to previous item
Navigates to previous item
Navigates to target's last item
Navigates to target's first item
Navigation Directive that handles keyboard events on its host and controls a targeted IgxDropDownBaseDirective component