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
6 views
Angularjs Make drop down disabled when pressing checkbox inside ng-repeat
I'm trying to display on screen html controls using Meta-Data stored in json file.
Also I'm trying to create a state where pressing check box that will make a drop down disabled.
I was managed to ...
0
votes
0answers
6 views
How to move my Asynchronous Facebook SDK script to service/factory module?
Once I heard about Angular and read the docs, fell in love with it. So I read about the 11 steps tutorial of Angularjs and now I'm trying to build an app with Facebook SDK. My subject states it all, ...
0
votes
0answers
9 views
AngularUI Router - What's the best way to implement “multiple simultaneous states”?
Say I've got two or more views on the same page that could be seen as widgets - whose state transitions are largely self-contained - what's the best way to implement this kind of "multiple ...
-2
votes
0answers
10 views
AngularUI Router - What's the best way to implement a multi-step scenario?
What's the best way to structure a multi-step scenario - say, a payment process - using AngularUI Router?
0
votes
1answer
11 views
Angular.js nested Controller $scopes must be predefined?
Why is defining a property for the child controller's $scope properties necessary?
This ng-class on the HTML element works:
...
0
votes
1answer
10 views
Including 3rd Party Modules in Angular App
I would like to include a couple of 3rd party Angular modules in my App. Previously I have only created simple apps that I simply use ng-app to bootstrap and put my code inside the controller.
From ...
0
votes
0answers
16 views
AngularJS removing data from postdata
I'm following the example from mightygio (http://mightygio.com/2013/05/integrating-rails-and-angularjs-part-3-rest-and-angular-resource) and would like to simplify the postData when updating.
...
-1
votes
0answers
22 views
$scope function return value with Angularjs
I want to get the value from $scope function
I have tried many times , it results in undefined
here is my code
$scope.getPagedDataAsync = function (pageSize, page, searchText) {
...
1
vote
0answers
12 views
Angular strap datepicker dynamic startDate/endDate
I have a scenario where I have a "parent" datepicker and a bunch of "child" datepickers, all within the same view. I will need to update the child pickers to be limited by the parent's date and the ...
0
votes
3answers
17 views
Do I need separate controllers from component-like directives in angularjs
I am writing custom element directives which are used to encapsulate HTML GUI components. I am adding custom methods (that handles ng-click events etc) in my linking function such as:
...
0
votes
0answers
14 views
external anchor links in Angularjs
My task is to organize a simple page for voting.
For a script that counts the votes from different social networks, you need a unique link to the (news / article), but my one-page application, ...
0
votes
1answer
15 views
Angular js factory to consume asp.net webApi
How do I consume a webApi in an angular js factory?
WebApi
public class WarrantyController: ApiController {
public WarrantyViewModel Get(string c, string l, string s, string cs, string ...
0
votes
0answers
10 views
AngularJS pass requestVerificationToken to a service
I'd like to pass a RequestVerificationToken which is generated by a Razor MVC helper in my login form to an AngularJS service that I've done to manage the authentication of my application
my form is ...
0
votes
0answers
23 views
Best practice to manage server side search with Angular Restangular
I have 2 controllers. A ManageCtrl to show a list of items and SearchCtrl one to manage a search box with various filtering options. On search I broadcast an event that I currently listen/act on in ...
0
votes
0answers
35 views
Pass element to Angular directive
I have a simple popup directive similar to
https://github.com/angular-ui/bootstrap/blob/master/src/modal/modal.js
I need to position my popup close to element that initiated the open.
What is best ...