Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
242 views

How do I submit a form to a controller on the server?

I am new to Angular and would like to know how to actually submit a form to the server once the data is filled in. The cookbook form examples on angularjs.org only save the state on the client. How ...
3
votes
2answers
267 views

Google Angular Framework - Worth the risk?

I have been asked to build a small web application for one of our clients and think it might be a good opportunity to try out a different framework for building web applications. Most of the ...
2
votes
2answers
203 views

How to test angular controller with JsTestDriver?

I have the following code: function TestStats($xhr) { $xhr( 'GET', '/test-dashboard/get-projects.json', angular.bind(this, function(code, response) { ...
2
votes
1answer
239 views

how to connect with couchDB by angular.js?

i search for this but not get proper answer weather we able to connect directly with couchDB with angular.js framework or we have to use node.js help for that.
2
votes
1answer
843 views

Angular.js vs Backbone.js

i am newbie in develop app with javascript framework and couchDB i want to know which is more powerful framework for using with couchDB and why? Thanks in advance
1
vote
0answers
100 views

Is there an IDE with explicit support for Angular JS?

I've tried WebStorm but there only seems to be a basic JavaScript support there, like in any other web IDE I have tried. I'm looking for something that would allow me to click-through from HTML pages ...
1
vote
2answers
83 views

AngularJS with Django - Conflicting template tags

I want to use AngularJS with Django however they both uses {{ }} as their template tags. Is there an easy way to change one of the two to use some other custom templating tag?
1
vote
2answers
53 views

Angular displacement on canvas

I have a square (100px x 100px) with origin at 0,0 (upper left). When i move the mouse, let say 10pixel x and y, I move the origin according to displacement and then origin become 10,10, simple, work ...
1
vote
1answer
137 views

Drag and drop sortable ng:repeats in Angular.JS?

Is it at all easy to use jQuery.sortable on ng:repeat elements in Angular JS? It would be awesome if re-ordering the items automatically propagated that ordering back into the source array. I'm ...
1
vote
2answers
97 views

When Angular.JS triggers an $onEval, is there any way to immediately tell what values in this scope have changed?

I want to sync changes to the server automatically. Currently I'm detecting changes in a scope.$onEval handler by JSON serializing the application state and comparing that to a previously serialized ...
1
vote
2answers
2k views

angular.js example in backbone.js and/or knockout.js

I'm comparing these frameworks to do some calculations on the client side. I really liked the example on the angular.js site. I was wondering if any of the backbone.js or knockout.js experts on the ...
1
vote
2answers
100 views

How to submit new entity as well as clear $anchor.task?

Using the Angular framework, how do I have the "submit" button both update the current entity as well as clear the anchor ID - I basically want to rapid-fire add entries, but it always turns my add ...
0
votes
1answer
44 views

How to you retrieve a single post on AngularJS?

I've been trying to pull a "single-post" request (ie. grabbing a single entry from my backend database), through the use of AngularJS, but was unable to understand the actual concept behind and ...
0
votes
1answer
58 views

How can I use AngularJS data binding with CKEditor?

How should I go about this? I was able to get the data into CKEditor by using a textarea with the name attribute matching my model and a script tag with ng:bind-template to call CKEDITOR.replace. I ...
0
votes
3answers
87 views

What is the best way to conditionally apply a class with angularjs?

Lets say you have an array that is rendered in a ul with an li for each element and a property on the controller called selectedIndex. What would be the best way to add a class to the li with the ...
0
votes
1answer
151 views

How to use angular.scope.$bind

I have the following controller which works fine: function Controller() { } Controller.prototype = { getResult: function(project) { var that = this; jQuery.ajax({ ...