JSFiddle - React, Tailwind, and code Playground
HTML
<body ng-controller="MainCtrl">
Name: <input ng-model="sh.name"/>
Phone: <input ng-model="sh.phone"/>
Secret: <input ng-model="sh.secret"/>
<table>
<tr ng-repeat="user in users | filter:{name: sh.name, phone: sh.phone}">
<td>{{user.name}}</td>
<td>{{user.phone}}</td>
<td>{{user.secret}}</td>
</tr>
</table>
</body>
CSS
</style><!--
Workaround for jsfiddle to pass in ng:autobind
http://doc.jsfiddle.net/basic/introduction.html#css
-->
<script
src="http://code.angularjs.org/angular-0.9.12.min.js"
ng:autobind></script><style>
JavaScript
function MainCtrl($scope, []){
$scope.users = [{name:'John', phone:'555-1276', secret:'shhh'},
{name:'Mary', phone:'800-BIG-MARY', secret:'psst'},
{name:'Mike', phone:'555-4321', secret:'shhh'},
{name:'Adam', phone:'555-5678', secret:'shhh'},
{name:'Julie', phone:'555-8765', secret:'shhh'}]
}