Hi Vladimir,

I have written custom filters that are able to process nested data. 
(probably you can find it if you search this group!), But that is not as 
easy as one might think. You need to parse your data. 
but in your case, your data is actually an array, it is just stored in an 
object. Just change it to an array, that's just a few lines of code.

something like: (typed up in my browser, probably won't work if you 
copy-paste ;) )

var result = []
 Object.keys(data).foreach(pushToArray)


 function pushToArray(item) {
    result.push(item);
 }


Does that help?
Regards
Sander

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to