I have a ng-repeat with lot of keywords (> 100 000) that's why I use limitTo: but I would like to be able to search in ALL.
Search: <input ng-model="filter:queryKeywords" type="text" placeholder="Filter" autofocus>
<label ng-repeat="k in keywords | limitTo:totalDisplayed | orderBy | filter:queryKeywords">
{{k}}
</label>
<!-- Will load 100+ keywords -->
<button class="btn btn-primary" ng-click="seeMore()">See More</button>
The problem is my search only works for items that I can see.
I would like to search in all items (even the one that I can't display).
Thanks!
limitTokeywords you want, that would send less data through the network and making the frontend to process less data too (of course, I'm assuming you have a backend you can modify, right?)