I'm working with a repeater and implementing a filter to query the items, like this:
ng-repeat="item in items | filter:query"
Now, I want to incorporate a select option as an additional filter. Any ideas on how to integrate this with the existing filter?
Appreciate your help!