2
I have an object and I’m reading it in ng-repeat, only if the id key equals 0777 I don’t want that position to be displayed,
<div ng-repeat="account in accounts | filter:{accountId :'00777'} ">
{{account.name}} - {{account.accountId}}
</div>
I’m doing fillter normally, displays only the object, but trying to use negation form, does not display all the positions of the object.
<div ng-repeat="account in accounts | filter:{accountId :!'00777'} ">
{{account.name}} - {{account.accountId}}
</div>
If anyone has managed to filter with denial in this way and can share, thank you.