Listbox
A listbox container.
id
anyA unique identifier for the listbox.
textDirection
anyA signal wrapper for directionality.
items
anyThe Option UIPatterns of the child Options.
orientation
anyWhether the list is vertically or horizontally oriented.
multi
anyWhether multiple items in the list can be selected at once.
wrap
anyWhether focus should wrap when navigating.
skipDisabled
anyWhether disabled items in the list should be skipped when navigating.
focusMode
anyThe focus strategy used by the list.
selectionMode
anyThe selection strategy used by the list.
typeaheadDelay
anyThe amount of time before the typeahead search is reset.
disabled
anyWhether the listbox is disabled.
readonly
anyWhether the listbox is readonly.
value
anyThe values of the current selected items.
onFocus
voidvoidscrollActiveItemIntoView
voidScrollIntoViewOptionsvoidDescription
A listbox container.
Listboxes are used to display a list of items for a user to select from. The Listbox is meant to be used in conjunction with Option as follows:
<ul ngListbox> <li [value]="1" ngOption>Item 1</li> <li [value]="2" ngOption>Item 2</li> <li [value]="3" ngOption>Item 3</li></ul>