I\'m trying to make and mobile webapp with angular.js, hammer.js and topcoat.
I\'m having some trouble on displaying data from a Json file like this one:
<
Check Plunker link
Answer to your question "how will i select on this nested json?"
$.each(data.artists, function(index, element){
$.each(this.albums, function(index, element){
$scope.albums.push(element);
});
});
Answer to your question "how will i filter those artists with a text field?"
- {{album.title}}