Toolbar
directive
A toolbar widget container.
textDirection
anyA signal wrapper for directionality.
items
anySorted UIPatterns of the child widgets
orientation
anyWhether the toolbar is vertically or horizontally oriented.
skipDisabled
anyWhether disabled items in the group should be skipped when navigating.
disabled
anyWhether the toolbar is disabled.
wrap
anyWhether focus should wrap when navigating.
onFocus
void@returns
voidregister
void@returns
voidunregister
void@returns
voidDescription
A toolbar widget container.
Widgets such as radio groups or buttons are nested within a toolbar to allow for a single place of reference for focus and navigation. The Toolbar is meant to be used in conjunction with ToolbarWidget and RadioGroup as follows:
<div ngToolbar> <button ngToolbarWidget>Button</button> <div ngRadioGroup> <label ngRadioButton value="1">Option 1</label> <label ngRadioButton value="2">Option 2</label> <label ngRadioButton value="3">Option 3</label> </div></div>
Jump to details