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

learn more… | top users | synonyms (1)

0
votes
0answers
17 views

angularjs directive - element.html() breaks transclusion

Reference plunker If I call element.html() in my link function, the transcluded elements no longer compile. That really says it all, and the plunker will demonstrate, but here's the code: ...
0
votes
0answers
10 views

Kendo UI + Angular

I'm starting a new project with kendo ui and I was wondering if anyone has any experience integrating it with angular? is there any prefered JS framework(e.g. backbone,knockout) for working with kendo ...
0
votes
2answers
22 views

AngularJS: Insert template after element and trigger show on click

I've created this Plnkr to show what I've started: http://plnkr.co/edit/LzcbPMqqiQbFjVzw4kDO?p=preview Two questions: How do get angular to leave the original button in place and insert the ...
0
votes
3answers
24 views

How to decompose a page in several view with Angular JS?

How does any body know how to divide a single html page in different view with angular.js. I have this working : <!doctype html> <html lang="en" ng-app="phonecat"> <head> .... ...
0
votes
2answers
28 views

AngularJS using $rootScope as a data store

I have an idea for my AngularJS app and I'm curious if the AngularJS community would consider it okay to do it this way... In short, I am connecting to a data API and displaying my results on the ...
0
votes
2answers
23 views

passing in a form value to function not working

EDIT: when i changed ng-model="$parent.selectedAnswer" in the form, it works. If someone can explain it, i'll mark that as an answer. I'm trying to collect a selected radio button value to an ...
0
votes
0answers
11 views

Facebook connect in a cross platform mobile app

we are quite confuse about what we have to do to get facebook connect running on our cross platform mobile app, we have seen a plugin for ios but I would like to have something more generic (android ...
0
votes
0answers
13 views

Unit testing an AngularJS directive which uses scrollposition

I have a directive which listens to the scroll event, and then adds a class (to make it stick to the top). My question is how I can test this behaviour? Should I mock $window, or is there a better ...
1
vote
1answer
19 views

Best approach to manage related objects in angular?

Let's say I have two json objects, one of users and one of accounts, something like: users = [ {id: 1, account_id: 1}, {id: 2, account_id: 2}, {id: 3, account_id: 1} ] accounts = [ {id: 1, ...
0
votes
1answer
24 views

Extra form fields not bound to model in angularjs

How can I retrieve a form value in the controller, when the specific field is no field of the model? <form name="userForm" ng-submit="updateUser()"> //fields of model <input ...
1
vote
0answers
13 views

How can I automate both E2E and unit tests with Yeoman & AngularJS?

I'm using Yeoman and generator-angular to manage AngularJS apps, but I'm having trouble with automated testing. Running grunt test will run unit tests once. I can get E2E tests to run after unit ...
2
votes
2answers
31 views

Angular JS, filter table with a select box

I have a table. I want to filter the table depending on which value is choosen in an select box. The comparison value is {{pipe.pipe_id}} in the select box and {{dimension.pipe_id}} in the table. ...
0
votes
1answer
20 views

Ng-click doesn't work inside ng-repeat

Ng-click doesn't work from inside ng-repeat. Outside it works. I've put a fiddle here <div ng-controller="MyCtrl"> <a ng-click="triggerTitle='This works!'">test</a> ...
2
votes
1answer
49 views

Do not render element if there is no data

I am using angular ng-hide directive to hide some markup if there is no data to show: <li class="header" ng-hide = " todayRecents.length === 0 ">today</li> now all ng-hide does is put ...
0
votes
1answer
19 views

Angularjs - ng-view inside ng-repeat

I have a list of Products. For each one, I have buttons to show the details and comments about it inside this ng-view. The user must to see in one pege the details about all products available, for ...
0
votes
1answer
14 views

breezejs: dynamically switching between OData and WebAPI

I'm facing a bit of a tricky situation here. I have two services that my application needs to access to. One is a pure ODATA service and the other is a WebAPI (with Breeze controller) service. My ...
1
vote
3answers
42 views

Read only inputs in AngularJS

I have some problem with readonly inputs on agularjs. I have some select which changes readonly inputs values by script. But when I try to output those values by ng-model in the table as {{ng-model}} ...
0
votes
1answer
11 views

Jasmine unit tests: $compile produces comment out of ng-repeat

Why the line var scope = $rootScope.$new(); dump($compile('<ul><li ng-repeat="item in [1,3,5,7,9]">{{item}}</li></ul>')(scope)); results in: '<ul ...
1
vote
1answer
17 views

Select a dynamic item in a list with AngularJS

I have a <select> element with an ng-model=sendTime element to select a time from the list. This list contains only a limited number of standard times, but as a last item it always contains an ...
0
votes
1answer
16 views

Remove a directive from module in Angular

We are trying to figure out if there is a way to remove/replace/override a set of directives temporarily whilst in a 'preview' mode. We have tried removing the module(s) that the directives are ...
0
votes
1answer
27 views

ng-switch not updating automatically

I'm running into an unusual behaviour with ng-switch that I'm not able to figure out. At the top of my page, I have #content{"ng-switch" => "root.showAlert"} ...
0
votes
1answer
25 views

How do I use Membership Provider with Angular.js and ASP.Net MVC 4?

I am really new to the Angular.js and I want to create a new project with Angular.JS with ASP.Net MVC4. I am really confused with how to use Angular.JS with MVC 4 membership provider together to ...
0
votes
2answers
20 views

AngularJS module doesn't load

My module isn't loading, and I can't figure out why. Could someone help me to find out what I am doing wrong? The following is my HTML in a file named index.html: <html ng-app="demoApp"> ...
0
votes
1answer
16 views

Difference between Firebase AngularFire implicit and explicit sync

I am new to firebase. I want to build it with angularjs and I found angularfire. In the angularFire docs listed Implicit and explicit sync. I tried to understand the document in github but I still ...
0
votes
0answers
10 views

Mock location service in my unit tests

I am doing unit testing for a function which performs a couple of operation, my code is: $scope.create = function() { $scope.query = $location.url().replace('/search?', ''); Search.save( ...
0
votes
1answer
18 views

Disable input on button click in angularjs

HTML <input type="text" ng-model="email" ng-disabled="button" rquired> <a class="btn" ng-model="button">edit</a> So basically I want to enable the input field when the button is ...
2
votes
1answer
27 views

AngularJS: How do I return the original element, with a new sibling element, in a directive?

Given this markup: <a href="/" myDirective="Text 1 2 3 Foo">Link</a> How can I end up with this output using a directive? <a class="tooltip" style="left:<the left pos of the ...
0
votes
2answers
40 views

Promises in AngularJS

I try to load json file with angularjs, $q and return data from angular filter. I have a angular filter: MyApp.filter('my_filter', function ($q){ return function(input){ var deferred = ...
0
votes
0answers
16 views

angular.js deferred doesnt work in callback

Consider the following example: .service('movieGetter', ['$q', '$timeout', function ($q, $timeout) { this.getData = function () { var deferred = $q.defer(); ...
0
votes
1answer
15 views

syncing the views of two angular apps

I have two angular applications in one page, and I need them to communicate. Specifically, I want one application to use a service of another application. I am able to get the service of the other ...
1
vote
1answer
25 views

How to configure dependency injection in angularjs?

I'm a little bit confused about how angularjs application works. First of all I should say I'm a newbie angularjs user but I'm familiar with other DI frameworks in other languages (like symfony in ...
0
votes
1answer
13 views

AngularJS dynamic application with or without routing

My application has 2 purposes: It needs to run stand-alone, where it needs routing for choosing a study etc. Or, it runs integrated in an other project, and only needs one controller and one view. ...
0
votes
1answer
22 views

AngularJS isolated directive with ng-repeat breaks transclusion scope

I'd really appreciate some understanding of this scoping issue I encountered while developing a transcluded isolated directive, one where the transclusion is repeated inside the template. I promise ...
0
votes
1answer
36 views

How to deal with the naming convention gap between the frontend (camelCase) and the backend (lower_case_with_underscores)?

The current project that I am working on uses angularjs/javascript for its frontend and django/python for its backend. The combination of the frameworks/languages that I chose works out pretty well, ...
0
votes
1answer
25 views

How can you hide a tab in Angular Boostrap UI using ng-show?

I'm trying to display a tab using angular bootstrap UI and ng-show. It simply doesn't work. <tabs ng-model="currentTab"> <pane heading="Triggers" active="panes['triggers'].active" ...
0
votes
2answers
34 views

How to $watch multiple variable change in angular

How to $scope.$watch multiple variables in Angular, and trigger callback when one of them has changed. $scope.name = ... $scope.age = ... $scope.$watch('???',function(){ //called when name or age ...
0
votes
2answers
29 views

ng-include not working in IE

I have developed a webpage using AngularJS and have tested it with Google Chrome during development. Everythinh works fine as it should in Chrome but now I've also tested it in Internet Explorer 9 and ...
1
vote
2answers
26 views

Constructing URL based on $routeProvider configuration

In angular.js, is there a built in way to construct URL based on already specified $routeProvider? Something like Rails' url_for: url_for(:action => 'login', :controller => 'account') or ...
2
votes
0answers
28 views

How can I register an angularjs factory after the app has “started” / been loaded?

I've got the guts of a routing architecture in Angular that will dynamically download and inject Angular Controllers and Services ... the Controller part works fine, and I'm trying to download ...
0
votes
0answers
12 views

Should hierarchical collections in an API reference each other bidirectionally?

I'm setting up an AngularJS app, at the moment using Deployd for the backend RESTful API. I'm trying to figure out the best practice for structuring the data in the API collections. Right now I have ...
0
votes
2answers
27 views

Conditionally include header file in angular js

I am trying to conditionally include a header file in my angular app but for some reason it does not seem to load the file. This is what I have in my view <div ng-controller="MyCtrl"> <div ...
3
votes
1answer
20 views

Set config's 'browsers' property in the command line in karma runner

I usually use browsers=['PhantomJS'] for running my specs with karma because it's faster than chrome and I find a bit annoying when chrome opens the browser in front of the window on every boot. But ...
0
votes
1answer
23 views

How to get Zip code or postal code by using geolocation api in angularjs

I am using geolocation api in angularjs .like this example: http://jsfiddle.net/LyD4Q/4/ HTML <div ng-app> <div ng-controller="GeoTestCtrl"> <div ng-hide="supportsGeo"> ...
0
votes
1answer
28 views

Multiple Controllers, only ng-view affected

I have a page which uses two controllers, SearchController and ProductController, that are both part of one app. They both sit on the main page, and are called using ng-controller. I have a route set ...
0
votes
1answer
18 views

Dynamic runtime aggregation of angular apps

I have the following use case Distributed development team creates standalone web-services with relatively small UI applications used for administering the service. Services perform relatively ...
2
votes
2answers
36 views

how to create an angular datepicker directive that uses ng-model

I have created an angular directive for my jQuery UI datepicker. The problem is that the directive doesn't update the input's ng-model when a date is selected. Any idea why? ...
0
votes
0answers
16 views

Angular/Breeze - Unable to enter decimal point in an HTML text input

In my HTML markup I have an input of type text which has a two-way binding (using ng-model) to a decimal property. The object which contains this decimal property is fetched using a Breeze query on ...
4
votes
1answer
33 views

Share a single service between multiple angular.js apps

I'm building an ecommerce site (based on shopify) and I'm using multiple small angularjs apps to handle things such as a quick shopping cart, wishlists, filtering products and a few other smaller ...
2
votes
1answer
29 views

What is the easiest way to handle modals in Angular JS?

Problem: How do I manage a bunch of modals in an Angular JS controller? I was putting them at the bottom of my view and using http://angular-ui.github.io/bootstrap/#/modal but I was ending up with ...
1
vote
2answers
48 views

Angularjs - get body element inside directive

How to get body element in angular directive? my objective is to do what one do with jquery $('body').innerWidth(); inside directive. I do not want to use jquery but angular built-in jqlite ...

1 2 3 4 5 121