I'm attempting to combine AngularUI's ui-grid and ui-select, so that I can have ui-select behavior while filtering the ui-grid.
I have a plunker that's part of the way there here: http://plnkr.co/edit/1rREdYPV4qz8slbwSLai?p=preview
<ui-select multiple ng-model="personName.selected" theme="bootstrap">
<ui-select-match placeholder="Select or search a person in the list...">{{$item.name}}</ui-select-match>
<ui-select-choices repeat="person in people | filter: $select.search">
<div ng-bind-html="person.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
But at this point, the only thing I can think of is to hide the native filters with JS, and use JS to push the output of the ui-select dropdowns into the filter behind the scenes. This feels pretty hacky though.
Is there an angularjs way to BIND the output of the ui-select to the filter? Or perhaps replace the filter with ui-select behavoir?
There is an official example that demonstrates how to do multi-select filter:
http://ui-grid.info/docs/#/tutorial/306_custom_filters
Notice the 'Age' column in the example is using a modal to present multi-select options.