I have upgraded to Angular 1.2.9 from v 1.0.8 to help with the performance of my app.
I have introduced track by which has improved the speed.
What I used to hav
You can create an intermediate variable that will hold the filtered array:
data-ng-repeat="result in filteredResults = (results | filter:filterPrice | filter:filterCarCategories | etc.)"
and then can use:
filteredResults.length