All Questions
Tagged with angularjs-model angularjs-ng-repeat
5 questions
0
votes
3
answers
68
views
Why cannot I add new list in a table in angularJS 1.x?
I have example code below where I am supposed to create a list of items.
<div ng-hide="listTrigger">
<!--FIRST TABLE-->
<table class="table ...
0
votes
0
answers
269
views
First option in the dropdown is not getting selected in an Angular app
I have following dropdown in the html template.
<div class="row">
<label class="text-label hint--top-right hint--large" data-hint="{{customer.config.METHOD.DESCRIPTION}}">...
0
votes
1
answer
352
views
Unable to track and bind to input elements created with ng-repeat
Here's my template, I am dynamically creating input elements to be used in a form. When I submit the form nothing is passed to the update() function designated on the submit element as nothing appears ...
0
votes
1
answer
36
views
Why did the model Array here not update in the DOM after updating in the Controller?
http://plnkr.co/edit/7OnKAGvVNXWLwN5fZqJu?p=preview
I'm setting up a question related to infinite scroll and noticed that when I update the $scope.tags array I have once the tags have been scrolled ...
1
vote
1
answer
84
views
What is the difference in behavior between ng-repeat and statically typed out code?
What is the difference between the html and the behavior produced by this ng-repeat code:
<div id="settings-row-{{key}}" class='settings-row' ng-repeat="(key, value) in items">
...