Is it possible to achieve the functionality of this angular js filter ng-repeat
on a tr element using pure javascript? Could it be done in just one custom filter?
Please note that showRow is a function that returns a boolean value, and searchString is a string.
ng-repeat="lob in filtered = (lobs | filter : showRow | filter : searchString | orderBy : 'name':true )