Top "Angularjs-ng-repeat" questions

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

Using comma as list separator with AngularJS

I need to create a comma-separated list of items: <li ng-repeat="friend in friends"> <b ng-repeat="email …

angularjs angularjs-ng-repeat
How to highlight a selected row in ngRepeat?

I couldn't find something that will help me to solve this simple issue in Angular. All the answers are relevant …

angularjs angularjs-ng-repeat
angularjs ng-style: background-image isn't working

I'm trying to apply a background image to a div by using the angular ng-style ( I tried a custom directive …

javascript angularjs angularjs-directive angularjs-ng-repeat ng-style
Angular ng-repeat add bootstrap row every 3 or 4 cols

I'm looking for the right pattern to inject a bootstrap row class every each 3 columns. I need this because cols …

angularjs twitter-bootstrap angularjs-ng-repeat ng-repeat
In Angular, how to pass JSON object/array into directive?

Currently, my app has a controller that takes in a JSON file then iterates through them using "ng-repeat". This is …

javascript json angularjs angularjs-directive angularjs-ng-repeat
Using ng-repeat and limitTo to limit the number of visible items displayed

I'm trying to limit my result sets to a fixed number. I can use limitTo with ng-repeat, but this limits …

javascript angularjs angularjs-ng-repeat
AngularJS: find the index position of filtered value in the original array

$scope.data = [ { "name": "Jim", "id" : 25 }, { "name": "Jerry", "id": 27 }, { "name": "Rithika", "id": 20 } ]; <div ng-repeat="person in data | filter: {id:20}"> {{…

angularjs angularjs-ng-repeat
Angularjs OrderBy on ng-repeat doesn't work

I'm trying to use AngularJS for my first project (a tournaments manager) and the orderBy filter on ng-repeat doesn't work :( …

angularjs angularjs-ng-repeat angularjs-filter
Angular JS filter not equals

Seems like a very basic question but I can't get the syntax right.. <li class="list-group-item" ng-repeat="question in …

javascript angularjs angularjs-ng-repeat ng-filter
angular ng-repeat skip an item if it matches expression

I'm looking for a way to basically tell angular to skip an item in an ng-repeat if it matches an …

angularjs angularjs-ng-repeat