here is my controller :
varDemoApp.controller('SimpleController',function($scope){
$scope.customers = [{name:'Ahsan',city:'Khulna'},
{name:'Rokib',city:'Bogra'},
{name:'Asad',city:'Satkhira'}];
});
And my html code is :
<div data-ng-controller="SimpleController">
Name:
<br/>
<input type="text" data-ng-model="name"/>
<ul>
<li data-ng-repeat="cust in customers|filter:name|orderBy:'name'">
{{cust.city}}-{{cust.name}}
</li>
</ul>
</div>
I want to filtered only by 'customers.name' but now it filter by overall customers array.
Yes, you can pass an object into filter expression: