Open nastia2325 opened 8 years ago
Is it possible to use nested property filters on a list / array?
For example I want to filter for a hobby of a person: {Name, Country, [pcgames, sports, cinema, etc.]}
I tried it with
<td data-title-text="Hobby" data-title="'Hobby'" filter="{'hobbyList.hobby': 'text'}"> <ul> <li ng-repeat="hobby in person.hobbyList">{{hobby}}</li> </ul> </td>
but it does not work :-/
Maybe this can help you.
http://stackoverflow.com/questions/28392651/angular-js-filtering-nested-array-in-controller/34775082#34775082
I don't know if the problem has been fixed.
I've similar requirement to use nested property filters on a list. Hope this issue is fixed.
Is it possible to use nested property filters on a list / array?
For example I want to filter for a hobby of a person: {Name, Country, [pcgames, sports, cinema, etc.]}
I tried it with
but it does not work :-/