AngularJS is an open-source JavaScript framework. Its goal is to augment browser-based applications with Model–View–Controller (MVC) capability and 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
6 views

JSON Vulnerability Protection - asp.net MVC and angular

I was reading the documentation for the $HTTP service on Angular JS and noticed the section "JSON Vulnerability Protection". in MVC 5, how can I add the string ")]}',\n" in front of the JSON response ...
0
votes
1answer
14 views

AngularJS accessing properties in returned JSON

I have the following JSON object returned from my AngularJS app $http call and I am trying to access it from my AngularJS app html using the following code but for some reason nothing is rendered in ...
0
votes
0answers
4 views

multiple instances of SlickGrid using an angular directive?

I'm very new to AngularJS and so far I'm loving it. I read that wrapping external libraries into directories is the kosher thing to do, and I understand why that makes sense. In my efforts to create ...
1
vote
3answers
17 views

When using AngularJS's $timeout, how much time is the delay argument set for, if no value is stated?

On the remarkably brief AngularJS $timeout documentation page, the 'delay' argument is stated as optional. When using $timeout without specifying a delay, I note that a delay is still applied. Can ...
0
votes
0answers
10 views

AngularJS best practice application authentication

I'm start building a web application where the user needs to authenticate in order to get access to different modules. I have been working with ASP.NET MVC in the past and it was quite easy using ...
0
votes
0answers
12 views

Is there any way to proper order events in angularjs?

I am having a lot of headaches trying to make $watch executes before event on an element of a form (a checkbox to be more precise). The only browser that works is FF. ...
0
votes
1answer
14 views

Creating Angular objects on the parent scope from a directive

I'm building a simple form in Angular that allows the user to add or remove fields as they please. I've modeled this system off of an array of objects. When you begin the array is empty. When a row is ...
1
vote
2answers
22 views

Where do you declare objects in AngularJS?

I have an object representing a person: function Person(_name) { this.name = _name; this.start = function() { var that = this $timeout( function sayHello() { ...
0
votes
0answers
8 views

put a function of the controller inside another controller with angular

I need to put this function function GraphsCtrl($scope, $http, $q){ $scope.chartExistencias = { dataSource: { load: function () { var def = $.Deferred(); ...
0
votes
0answers
9 views

Bootstrap dynamic divider for columns (angular solution preferable)

Let's say I have a typical bootstrap layout with row's and col-lg-x's <div class="content container"> <div class="row"> <div class="col-lg-5"> </div> ...
1
vote
0answers
34 views

How am I supposed to pass data from serverside controller an AngularJS controller?

I've encountered what I believe to be a common scenario, in which I am using an MVC pattern (specifically ASP.NET's MVC framework) for a web application, with AngularJS on the front-end. My problem is ...
0
votes
1answer
13 views

AngularJS - mechanics of $scope.$watch - is it just an observer pattern?

I have some factory: .factory("someFactory", function() { var someFactory = {}; someFactory.objects = [ { name: "obj1" }, { name: "obj2" } ]; return someFactory; } And some ...
0
votes
2answers
11 views

Angularjs ng-repeat radio button list: selected radio returning undefined value

I have found a lot of people with the same question but the answers given don't work for me. This is my code: <div ng-controller="addEventController"> //other form input fields that will be ...
0
votes
1answer
28 views

Angular $http not resolving in $routeProvider

I am trying to display data from a JSON file onto the webpage. My Code angular.module('bioA.configs',['ngRoute']) //Config routes .config(['$routeProvider',function($routeProvider){ ...
0
votes
0answers
3 views

Angular-Strap bind datepicker/timepicker to input value property

Trying to figure out the best way to take the selected date and time from a angular-strap datepicker / timepicker. I am using a large form and not wanting to convert it to post via angular, just want ...

15 30 50 per page