Top "Angularjs-ng-repeat" questions

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

AngularJS filtering between a range

I have set up a range slider that ranges from 0 - 2hr, the times are calculated in mins then converted …

angularjs angularjs-ng-repeat angular-filters rangeslider
Conditionally apply filters with ng-repeat

I have an object that contains a mixture of numbers and text for values. I'd like to apply the numbers …

javascript html angularjs angularjs-ng-repeat angularjs-filter
Ionic - Reload and display new data in ng-repeat when clicking back button

Background I have an ng-repeat list that goes to a details page (which has a back button). The $scope.items …

angularjs angularjs-ng-repeat ionic-framework angularjs-routing ionic
binding data from $http.get() request into ng-repeat

I'm getting fine my JSON data from a server, but the problem comes when trying to list it at my …

angularjs angularjs-ng-repeat angular-http
Ng-animate does not add the ng-enter and ng-leave classes

This is my first project working with Angular and i have some troubles with ng-animate. I did a couple of …

angularjs angularjs-ng-repeat ng-animate
Avoid using extra DOM nodes when using nginclude

I'm struggling to wrap my mind around how to have an ng-include not use an extra DOM element as I'm …

angularjs angularjs-ng-repeat angularjs-ng-include
Based on country selected , need to populate state and city

HTML: <label for="country">Country *</label> <select id="country" ng-model="statessource" ng-options="country for (country, …

angularjs angularjs-ng-repeat ng-repeat angularjs-ng-options
AngularJS using $sce.trustAsHtml with ng-repeat

I'm trying to use $sce.trustAsHtml() with a property of an object in ng-repeat. The result is that the HTML …

javascript angularjs angularjs-ng-repeat ng-bind-html ngsanitize
AngularJS : Variables in ng-model

I have a loop ng-repeat <div ng-repeat="data in datas"> Name: {{data.name}} <input type="text" ng-model="…

javascript angularjs angularjs-ng-repeat angularjs-ng-model
Do bindings nested inside of a lazy one-time ng-repeat binding bind just once?

My understand is that in the following code, both bindings will lazily bind only once: <li ng-repeat="item in ::…

angularjs binding angularjs-ng-repeat