<tbody>
<tr ng-repeat="y in Summary">
<td>{{y.ID}}</td>
<td>{{y.submitTime}}</td>
<td>{{y.timeTaken}}</td>
<td>{{y.description}}</td>
</tr>
</tbody>
I want to filter the values when user selects a checkbox-exclude Non-members.
So the Non member array has IDs of users.
$scope.Nonmember=["521","234","456", etc]
So when the user selects the checkbox I want to remove the rows which have IDs in nonmember . Can a filter be used for searching through the whole array ?.. or ng-show/hide/if can be used??