EE / angular-ui-tree-filter

A module providing an AngularJS filter which can be used with angular-ui-tree to match tree nodes.
ee.github.io/angular-ui-tree-filter
MIT License
40 stars 21 forks source link

Filtering arrays #12

Open RobbertWolfs opened 8 years ago

RobbertWolfs commented 8 years ago

Hi

Is it possible to use this library to filter on an array? For example, we have the following object : { "id": "1234", "name": "filename", "tags": [ "57569226c86f0238048d6499" ], "contentType": "57a0af22ba4b03af610afdee", }

We would like to filter on "contentType" and on "tags". If we do the following in our code, it works perfectly :

`

` But if we try that with tags (which is an array), the filter does not work. Thanks, Robbert