I have following filter in angularJS:
<div ng-repeat="node in data | filter:{parentID:12}"></div>
This works fine (I get only data, where parentID is 12).
In the next step, I want to get all data, where parentID is (for example) 12,13,25 or 30.
I tried following (its not working):
filter:{parentID:[12,13,25,30]}
Is there any way to build a filter as described?
Thank you very much!