Im trying some angularJS on this example
http://www.w3schools.com/angular/tryit.asp?filename=try_ng_filters_filter
<ul>
<li ng-repeat="x in names | filter : 'i'">
{{ x }}
</li>
</ul>
But how you filter for multiple choices? In my case I have a model with all the cars. And the user select a list of ID int[] SelectedCars
from a tree list.
So I want something like
<ul>
<li ng-repeat="x in names | filter : SelectedCars[]">
{{ x }}
</li>
</ul>