I have a search box using angular:
<input type="text"
typeahead="item.name for item in list |
filter: $viewValue:comparator | orderBy: '+name'"/>
I want to add another filter to exclude certain items from another array. Something like:
... | exclude: items in excludedList
I don't want to use ng-hide; I'm specifically looking for a filter to do this.