Dropdown is a simple directive which will toggle a dropdown menu on click or programmatically.
This directive is composed by three parts:
uib-dropdownwhich transforms a node into a dropdown.uib-dropdown-togglewhich allows the dropdown to be toggled via click. This directive is optional.uib-dropdown-menuwhich transforms a node into the popup menu.
Each of these parts need to be used as attribute directives.
-
auto-close(Default:always) - Controls the behavior of the menu when clicked.always- Automatically closes the dropdown when any of its elements is clicked.disabled- Disables the auto close. You can control it manually withis-open. It still gets closed if the toggle is clicked,escis pressed or another dropdown is open. It also won't be closed on$locationchangeSuccess.outsideClick- Closes the dropdown automatically only when the user clicks any element outside the dropdown.
-
dropdown-append-to$ (Default:null) - Appends the inner dropdown-menu to an arbitrary DOM element. -
dropdown-append-to-bodyB (Default:false) - Appends the inner dropdown-menu to the body element. -
is-open$ (Default:false) - Defines whether or not the dropdown-menu is open. Theuib-dropdown-togglewill toggle this attribute on click. -
keyboard-nav: B (Default:false) - Enables navigation of dropdown list elements with the arrow keys. -
on-toggle(open)$ - An optional expression called when the dropdown menu is opened or closed.
template-url(Default:none) - You may specify a template for the dropdown menu. Check the demos for an example.
-
appendToOpenClass(Default:uib-dropdown-open) - Class to apply when the dropdown is open and appended to a different DOM element. -
openClass(Default:open) - Class to apply when the dropdown is open.
For usage with ngTouch, it is recommended to use the programmatic is-open trigger with ng-click - this is due to ngTouch decorating ng-click to prevent propagation of the event.