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.
There are cases where we might need to show some static info at the dropdown. We could add a new directive ui-select-static-choice and I was thinking of something like this:
<ui-selectng-model="person.selected"><ui-select-matchplaceholder="Select a person in the list or search his name/age...">{{$select.selected.name}}</ui-select-match><ui-select-choicesrepeat="person in people | propsFilter: {name: $select.search, age: $select.search}"><divng-bind-html="person.name | highlight: $select.search"></div></ui-select-choices><ui-select-static-choiceng-if="!$select.items.length">
No results for <b>{{$select.search}}</b></ui-select-choices-static><ui-select-static-choiceng-if="$select.items.length<10"><buttonng-click="fetchFromServer($select.search)">Search more results on server</button></ui-select-choices-static></ui-select>
mrTable, mrkrstphr, just-boris, d3vtoolsmith, IanShoe and 27 more