Tagged Questions
0
votes
1answer
35 views
Two-way data-binding with ng-grid?
How do I get two-way data-binding with ng-grid?
I am working from their pagination example, and have figured out how factory and broadcast work; and have thus successfully loaded new versions of my ...
3
votes
1answer
76 views
Single page app, permalinks and ngView?
This is my current setup, with each column being represented by a controller:
<navbar></navbar>
[column1] [column2] [column3]
<footer></footer>
Additionally each column has ...
0
votes
1answer
89 views
Getting select rows from ng-grid?
How do I create (or access) an array of selected rows in my ng-grid?
Documentation (scroll to "Grid options")
id | default value | definition
...
1
vote
2answers
45 views
AngularJS get form inputs without binding
I'm building my first application with AngularJS, but i have run into a little problem.
I got a table where i render every user in users array like below:
<table class="table table-hover">
...
6
votes
1answer
213 views
AngularJS: Two way data binding fails if element has ngModel and a custom directive
I made two directives to setup custom error messages in AngularJS:
errors -> displays the error messages for a form
error-message -> sets up a custom error message on an input
For some reason ...