Number of items in a list filtered AngularJS

ocodo picture ocodo · Feb 14, 2013 · Viewed 18.9k times · Source

How do you get the length/number of items returned by a filter predictate in AngularJS?

Answer

ocodo picture ocodo · Feb 14, 2013

I managed to find a great answer on the AngularJS Google Group, thanks to Pawel Kozlowski.

ng-repeat="item in filtered = (items | filter:filterExpr)"

Would create the filtered list on the fly, you can use filtered.length anywhere else in the current scope to show the count.