Tagged Questions
0
votes
1answer
78 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
0answers
62 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 ...
1
vote
1answer
139 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 ...
1
vote
2answers
250 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
79 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
1answer
259 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 ...