Top "Angularjs-ng-repeat" questions

The `ngRepeat` directive instantiates a template once per item from a collection.

Angular.js ng-switch-when not working with dynamic data?

I'm trying to get Angular to generate a CSS slider based on my data. I know that the data is …

angularjs angularjs-ng-repeat ng-switch
How to use "ng-repeat" within template of a directive in Angular JS?

I'm new to Angular JS and I am trying to create a custom directive that will be used as below: &…

angularjs angularjs-directive angularjs-ng-repeat
ngRepeat Filter by deep property

If I have a complex object with objects as property values, how can I filter by one of the nested …

javascript json angularjs filter angularjs-ng-repeat
Angular.js ng-repeat across multiple elements

This question has been partly addressed here: Angular.js ng-repeat across multiple tr's However that is just a work-around really, …

javascript jquery angularjs angularjs-ng-repeat
Directive isolate scope with ng-repeat scope in AngularJS

I have a directive with an isolate-scope (so that I can reuse the directive in other places), and when I …

angularjs angularjs-directive angularjs-scope angularjs-ng-repeat
How do you toggle an active state ng-class in an ng-repeat item using ng-click?

<ul> <li data-ng-repeat="image in images" data-ng-click="toggle = !toggle" data-ng-init="toggle=false"> <img data-ng-class="{'active' : …

angularjs angularjs-ng-repeat angularjs-ng-click ng-class
AngularJS: ng-repeat track by $index inside nested loops

I need a second $index for my nested ng-repeat loop. How and where should I put it? AngularJS site says …

angularjs angularjs-ng-repeat
ng-repeat specify a starting index

How can I specify an index where an ng-repeat directive is going to start instead of zero? I have a …

angularjs angularjs-ng-repeat
How do I only show an element if nested ng-repeat is not empty?

I have a List of lists, created with a nested ng-repeat. Each outer ng-repeat contains a div with the label …

angularjs angularjs-ng-repeat
nested ng-repeat $parent.$index and $index

I have a strange bug that, unfortunately, I cannot replicate with jsfiddle. I've commented out my entire code (Except libraries,…

angularjs angularjs-ng-repeat