Im having trouble with a filter i have something like this:
<tr ng-repeat="data in dataset | filter:{id:12}">
<td>{{data.id}}</td>
<td>{{data.name}}</td>
</tr>
i would to be able to filter by an array of ids something like this
id=[12,14,23]
and show the rows that have those ids
thanks for any help