I have input field:
<input type="text" ng-model="in">
Also select list:
<select ng-model="sel"></select>
How I can use two filters in ng-repeat something like:
ng-repeat="item in arr | filter:sel | filter:in"
My select list in header:
<div ng-controller="TestController">
<select ng-controller="in"></select>
</div>
Also in bottom of page I have:
<div ng-controller="TestController">{{in}}</div>
But {{in}} is empty
<select ng-controller="in">isn't even valid. also, why are you repeatingng-controllerin another div? That div won't have access to the$scopeof the other controller....