How can I be able to start filtering only when the querytext's length is equal to 2?
I have this code and I do not know how to start filtering only when querytext.length >=2
<input type="search" ng-model="querytext">
<ul>
<li ng-repeat="value in filteredList | filter:querytext>{{value.Name}}</li>
</ul>
$scope.filteredList =[{Id:1,Name:"Soul"},{Id:2,Name:"Croft"}];
Add ng-minlength="2"
to <input>
element.
<input type="search" ng-model="querytext" ng-minlength="2" />
<!-- ^^^^^^^^^^^^^^^^ -->
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With