Hi all how to filter this picture in columns top inputs column by column?
Thanks all.
You can try this solution: example
<input ng-model="search.name"/>
<input ng-model="search.age"/>
<input ng-model="search.gender"/>
<table>
<tr ng-repeat="item in todos | filter:search">
<td>{{item.name}}</td>
<td>{{item.age}}</td>
<td>{{item.gender}}</td>
</tr>
</table>