The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
3 views

How to parse HTML in ng-repeat in angular.js

I need to parse optional HTML from my model in ng-repeat. I have a repeater in a .jade template like this: tr(ng-repeat='car in cars') td(class='arrived-{{car.arrived}}') {{car.number}} ...
0
votes
1answer
57 views

How do I set up two-way databinding inside an ng-repeat that iterates over an array?

I'm using angularjs to my webapp but i can't understand how tu pass an array to ng-model inside an ng-repeat. this is my code <div> <table class="table table-hover" width="100%"> ...
0
votes
1answer
72 views

Multiple call to onselect from select element with Angular ng-repeat

Im using an HTML select element to display an entity's field that has enumerated values in it. Within the page, I have multiple fields for the entity, therefore multiple select elements. Im using ...
2
votes
0answers
88 views

Angular select adding empty element despite carefulness

I have this html: <select ng-model="group.newCriterionType"> <option ng-repeat="type in group.availableTypes" value="{{type}}" ng-selected="$first">{{type}}</option> ...
0
votes
2answers
112 views

Get html attribute through $scope in angularjs

Alright, so I'm making a recursive list in AngularJS using ng-include and ng-repeat, something like this: <div id="wrapper"> <div id="text" ng-click="DivClick()"> <ul> ...
1
vote
1answer
81 views

Directive after ngRepeat update

I'm having some AngularJS trouble with firing off a directive when ng-repeat has completed an update. I have three named arrays, switched to via three links, allowing the selected array to be ...
2
votes
1answer
231 views

AngularJS directive with ng-repeat not redering

The problem is that I have to manage a list of gum balls that is retrieved from a service. The directive I've created seems to work when I hardcode the elements in the HTML, but when I attempt to ...
0
votes
2answers
56 views

how to show an empty template in custom directive

I am working on a custom directive that will show the transcluded empty template when there is nothing to show in the scope -- as in this plunker. I could not achieve to remove the empty template in ...
1
vote
1answer
452 views

AngularJS - Append element to each ng-repeat iteration inside a directive

I'm using a ng-repeat inside a <tr> element together with a directive. Html: <tbody> <tr ng-repeat="row in rows" create-table> <td nowrap ng-repeat="value in row | ...
1
vote
1answer
69 views

How to have two <li> tags for each repetition with Angularjs's ng-repeat

I have the following menu items [ { "name": "Home", "target": "#home", "state": "active", "partial_html": "partials/home.html" }, { "name": "Find", "target": "#find", "partial_html": ...
1
vote
1answer
115 views

Angularjs function inside ng-repeat called more times the length of the items

Is this behavior normal? http://plnkr.co/edit/P1TsiIJbV3MvAjHuJRmF?p=preview - two items in collection and ranTimes being called 20 or more times..
2
votes
3answers
386 views

Push rows in a table rendered with ng-repeat in angular

I want to push in an extra row inline in a table when the client clicks on the row. The data should not be prefetched, since I expect there to be at most 30 rows but where each row has associated data ...
2
votes
1answer
376 views

Angular.js - currently selected option's value inside ng-repeat

I have entries, their json object looks somewhat like this { 'id': 5, 'activityId': 1 } then I have activities, their json object looks like this { 'id': 1, 'name': 'Activity ...
0
votes
1answer
163 views

angularjs, ng-repeat and DOM elements size

I have a part of code, like this: <div class="wrapper-directive"> <div class="table" style="display:table"> <div class="column" style="display:table-cell;" ng-repeat="column ...
0
votes
1answer
148 views

ng-switch element in layout issue

I am using ng-switch to create a filtering input field in the layout. I am switching on the route name and I use this field to filter the data in ng-repeat on each page. ...
1
vote
1answer
104 views

Grouping ng-repeat and modifying DOM outside directive

I'm not exactly sure how to describe the issue I am having, or even if it is an issue. I guess I am having trouble wrapping my head around how Angular Directives work. Any advice and/or opinion on ...
1
vote
1answer
280 views

ng-switch and ng-repeat on the same element interfearing

I encountered behaviour in Angular I did not expect and the purpose of this post is to find out whether this is a bug or intended and possibly an explanation why it is intended. First see this ...
1
vote
1answer
284 views

Angularjs with ng-repeat is generating the same id for multiple elements of the same type

I have an html page where i have an object 'Message' having a property 'Properties' which is an array of objects. The problem is when I'm using 'ng-repeat' to iterate over 'Message.Properties' items ...
0
votes
1answer
211 views

ng-repeat not working when include jQuery

I'm using zurb-foundation with AngularJS. I have the following code: <div class="row full" ng-controller="Movies"> <div class="large-3 columns"> <form ...
1
vote
1answer
218 views

Problems with AngularJS in ng-repeat in IE9

Firefox and Chrome work like a charm, only IE9 is annoying again. I use these code snippet: <div class="weekDays-sliders" fixed="0"> <div class="weekDays-slider" style="left: ...
0
votes
3answers
1k views

AngularJS + Bootstrap Dropdown : can't do ng-click in ng-repeat

I'm trying to create a picker with Bootstrap Dropdown and AngularJS. http://jsfiddle.net/qbjfQ/ <li ng-repeat="item in list"><a ng-click="current = item">Dynamic set ...
0
votes
1answer
404 views

AngularJS ng-repeat with data from service

Originally in my app, I created controllers with very basic $http calls to get a resource by getting the ID of an object from the url ($routeParams). Ng-repeat display the results correctly. ...
0
votes
1answer
237 views

angularjs ng-repeat on two levels but just one output

I have a big object that looks something like this : scope.marketplaces = { first_example : { ... }, second_example : { ... }, ... }; What I'm trying to do is loop through the big ...
0
votes
1answer
198 views

Creating multi-level lists with ng-repeat

I am trying to make a multi-level list from an object that contains the nesting data: function linksRarrange($scope) { $scope.links = [ { text: 'Menu Item 1', url: ...
0
votes
2answers
1k views

Angular.js: Using ng-model for dropdowns within ng-repeat

I'm having a hard time understanding how to use ng-model within ng-repeat. In this context, CargoItems is a list of objects that have a LoadPoint on them. LoadPoint has Id and Text properties. I ...
1
vote
2answers
153 views

Using angular to turn a multi-dimensional array into a multi list

js` and I would like to repeat an array into a list From this: This is in the Service: var Response= [ ["Article One"], ["Article Two"], ["Article Three"], ["Article ...
0
votes
1answer
239 views

directive for array without using ng-repeat

Once again I stumbled on slow performance of ng-repeat and can't figure how to build a directive that will render an array of elements without utilizing ng-repeat anywhere (even in the template) So, ...
2
votes
1answer
655 views

Custom directive (like ng-repeat)

I've tried many different things to fix performance issues of ng-repeat. including stuff described here: How to 'unwatch' an expression I need to have a large set of rows on the page up to ...