Using Angular, I\'m trying to filter using ng-repeat on FactorName given the following schema.
Filtering using
<... ng-model=\"query.Factors.FactorName\" ...> doesn\'t wo
There is also another place where you can iterate on a array, working along side ng-repeat, in the double bindings with a custom filter.
Working Demo
HTML
-
{{ x.Factors | factorFilter }}
JS
app.filter('factorFilter', function() {
return function(items) {
var results = [];
if (items) {
for (var i = 0; i < items.length; i++) {
results = items[i]['FactorName'];
}
return results;
} else {
return 'Doh!';
}
}
})