You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
David Cain edited this page May 28, 2016
·
6 revisions
ui-select-no-choice
This directive was created in PR #1101 and included in v. 0.17.1
The ui-select-no-choice directive must be an immediate child of the ui-select directive. It displays its contents when no matches are found.
Example usage:
<ui-selectng-model="model.selected"><ui-select-matchplaceholder="Pick one...">{{$select.selected.name}}</ui-select-match><ui-select-choicesrepeat="person in people | filter: $select.search track by person.name"><divng-bind-html="person.name | highlight: $select.search"></div></ui-select-choices><ui-select-no-choice>
Dang! We couldn't find any choices...
</ui-select-no-choice></ui-select>