AngularJS is an open-source JavaScript framework. Its goal is to augment browser-based applications with Model–View–Controller (MVC) capability, reduce the amount of JavaScript needed to make web applications functional. These type of apps are also known as Single-Page Applications
0
votes
0answers
9 views
How do I manage several views in angular.js
I have the following page layout:
is the main menu
is the top menu
is the content [EDIT: Whoops it seems that I've lost some numbering, section 3 is the large middle section :)]
I would like to ...
0
votes
0answers
9 views
Error in controller with angular-google-maps in Angularjs
I have a problem with setting up my controller in angular js.
I want to use angular-google-maps (http://nlaplante.github.io/angular-google-maps/#!/usage)
I have my angular controller like this:
...
0
votes
0answers
6 views
Testing services w/ $httpBackend in AngularJS
I have a service with about a dozen methods hanging off it. I'm setting up my first round of unit tests. Here's a simple example that's working:
it('should have a working getter/setter for ...
0
votes
0answers
10 views
Using Angular with breeze and require
i am trying to use angular with breeze and requireJS
how ever i am getting error of
Uncaught Error: Module name "ko" has not been loaded yet for context: _. Use require([])
i have configured
...
1
vote
1answer
19 views
Insert directive programatically angular
So I basically want to be able to trigger an event and then have a direcrtive compile and insert its self to a position in the DOM.
Currently I have something like this
//controller
...
0
votes
0answers
8 views
Using Angular with Breeze and OData
how can i config breeze to work with Angular and OData?
i set
breeze.config.initializeAdapterInstance("modelLibrary", "backingStore", true);
but i need also to set
dataService: "OData"
but ...
0
votes
0answers
21 views
How to perform uploading file to a canvas using AngularJS IE?
I'am trying to debug this code on IE. This code use AngularJS with a file input. It works fine on Chrome.
$scope.file_changed = function(element) {
var files = element.files; // FileList object
...
0
votes
1answer
25 views
Can push notifications be done with an AngularJS+Flask stack?
I have a Python/Flask backend and an Angular frontend for my website. At the backend there is a process that occasionally checks SQS for messages and I want it to push a notification to the client ...
1
vote
1answer
39 views
Is angular-ui's ui-router anywhere near production ready yet? [closed]
Our team is starting to use ui-router and it seems VERY GOOD so far. We are taking advantage of being able to fit templates into views within views. Prior to this our team was at a loss as we could ...
0
votes
2answers
46 views
structuring AngularJS application
We have an fairly large angularJS application, where all controllers were in one file.
We are thinking of splitting each controllers to his corresponding file. is there any reason why not to do it?
...
0
votes
2answers
20 views
$http.transformRequest with results from an asynchronous function
I have an angular application that uses the $http service to fetch data from a remote server. Under certain circumstances I need to append a custom header value to each request, and I would like to ...
2
votes
1answer
40 views
Confused about Angularjs Scope & Bindings
Take your time on this. I won't rush to accept an answer.
I am struggling to understand the scope of models and their bindings in respect of directives which have limited scope.
I get that ...
0
votes
1answer
34 views
Namespacing modules
I am a little confused on module declarations and dependency injection.
I understand the simpler example, but I'm looking at a more "namespaced" approach for reusability.
I keep getting the error ...
0
votes
1answer
34 views
Adding filtering to Angular Web API data
I have managed to return data from Web API that can be displayed using Angular. But now I need to be able to filter that data. I have created a directive that passes the parameter that I want to ...
0
votes
1answer
23 views
Is There a Way to Check the Count of Angular Watchers on a Page?
I would like to be able to monitor this count for memory pressure troubleshooting purposes.