I\'m attempting to use filters within an AngularJS directive but not sure exactly how to do so. From some info on the mailing list it appears that you should be able to inj
You're creating a new isolate scope on the directive (scope: { 'fancyDisplay': '=' }
), that means you won't be able to access properties from the parent scope. Since tagFilter
is defined on the parent scope, you won't be able to access it.
Pass tagFilter
as an attribute to the directive:
<div fancy-display="model.data" filter="tagFilter"></div>
And on the directive:
scope: {
fancyDisplay: '=',
tagFilter: '=filter'
},
jsfiddle: http://jsfiddle.net/bmleite/VDLqa/5/
Thanks to @bmleite for your answer.
Another thing that might be helpful is to make sure to declare your ng-repeat directive like this incase you have deplicates on your list.
It took me forever to figure this out. Apparently you must filter before you specify the track by x :
app.directive("someDirective", function(){ ...
restrict: "E",
...
template:"<ul ng-repeat='t in tree | filter:key track by $index'><li>{{t}}</li></ul>",
});
The inverse does not work.