Here are almost 2000 rows in the page. I use AngularJS filter to search some items which contains the typed strings. The problem is that efficiency is bad when typing one character into the input control. Do you guys have good ideas how to improve this filter? Here is the search code:
input box:
<input class="searchText ng-cloak" ng-model="searchText.ValueName" placeholder="Search Value" />
in the table's ng-repeat:
<tr ng-repeat="registry in currentSettings | filter:searchText" ....
string filter:searchText
is used to filter.