1
vote
1answer
91 views

AngularJS : Appending the same structure on the click of each item

My index.html page is like following: <div id="sidepanel" ng-controller="myCtrl"> <ul class="drop-down"> <li ng-repeat="item in items"> <a ...
0
votes
1answer
218 views

Angular.js filters and functions on scope that is changing every second

The problem. I have a table of entries($scope.entries), each row(ng-repeat) with 5 columns, 2 of those columns have custom made filter for various transformations. Now in the same scope I have ...
1
vote
1answer
240 views

Angular.js custom iterations/data transformations and grouping… when simple ng-repeat just won't cut it

Still this problem Angular.js more complex conditional loops but I felt that the answer to the question as it was asked was right so I accepted it. So let me elaborate more than I did in the original ...
2
votes
1answer
37 views

AngularJS set initial active class

I'm using Bootstrap tabs with an Angular ng-repeat. The problem I'm running into is that the first li and the first div.tab-pane each need an active class. Bootstrap takes care of that after a tab is ...
1
vote
2answers
327 views

Angular JS Fails After Upgrade from 1.1.0 to 1.1.1

When I upgrade the the ng-repeat takes extraordinarily long to load and tries to display MORE content boxes without the content that is being served by $resource. I have narrowed the problem down to ...
0
votes
2answers
164 views

Angular.js more complex conditional loops

The goal is to create this <h3>11.4.2013</h3> <ul> <li>entry 1</li> <li>entry 2</li> <li>entry 3</li> </ul> ...
0
votes
2answers
2k views

ng-repeat list in Angular is not updated when a model element is spliced from the model array

First of all, live example con be found here Hi everybody, I have two controllers and share data between them with an app.factory function. The first controller adds a widget in the model array ...
0
votes
1answer
40 views

Does ngRepeat rerender all items after adding an new item?

If during execution an item is added to an array that is rendered using ngRepeat, does it redraw all items ?
0
votes
1answer
377 views

Angular.js view doesn't update when nested $scope array is updated

I am trying to make an angular.js view update itself when adding a comment. My code is as follows: <div class="comment clearfix" data-ng-repeat="comment in currentItem.comments" ...
0
votes
1answer
430 views

AngularJS ng-options inside custom directive which is inside ng-repeat

Could you help me to find a way to set and get select element values which are placed inside my custom directive. This is what I have: <body ng-app="myApp"> <div ...