Hi I'm new in angularjs i just have question to ask.
this is my ng-repeat code.
<ul ng-repeat="todo in filteredData | filter:search">
And it seems that this code will only filter the filteredData not the alldata itself.
filteredData is always equal to 10 becuase i'am using a pagination in angularjs.
Now my question is there a way that i can filter alldata not just the filteredData? i tried
<tr ng-repeat="todo in filteredData | filter:alldata:search">
but is dosen't work.
Thanks