1
vote
1answer
14 views

required attribute with dynamic radio buttons (ng-repeat)

I am getting weird result when using the HTML5 'required" attribute for radio type inputs and Angularjs form validation My input <form name="myForm"> <div ng-repeat="i in [0,1,2]"> ...
2
votes
3answers
21 views

concat scope variables into string in angular directive expresssion

I am using a scope method in an angular ng-click directive like so: <a ng-click="$navigate.go('#/path/obj.val1/obj.val2')">{{obj.val1}}, {{obj.val2}}</a> The trouble here is that ...
0
votes
3answers
32 views

Angular ng-repeat causes isolated scope

I could use help with understanding how to make these 2 examples work in the same way. For starters, here's my full example: http://jsfiddle.net/tylerbrinks/DZbfD/ I'm using a simple controller to ...
0
votes
0answers
20 views

Architecture for login system on MEAN stack?

I'm developing a web app on the MEAN stack (MongoDB, Express, AngularJS, and node.js). I'm developing a login system, and will also have some of the Angular routes protected so that only logged-in ...
0
votes
3answers
33 views

Using the browser as a generic, remote, interactive canvas

Background I am very-very new to web development, but I have quite a lot of experience in other fields of development (mostly server-side, backends, and some with desktop GUIs). Currently I am ...
2
votes
1answer
37 views

how to calculate amount of angular bindings which was made on a page

I implementing angularjs application and need to know, how much angular bindings I currently have on my page. How can I calculate it?
0
votes
2answers
27 views

How to display list of checkboxes on button click in angularjs?

I am referring to this fiddle http://jsfiddle.net/9HXzW/55/ which is written using Jquery. The code in HTML is, <div id="right-column-sidebar"> <ol> <li><input ...
0
votes
1answer
24 views

AngularJS: Disable data binding on page/controller load, and enable it later

I want to serve a page that already has data populated from PHP, and use AngularJS to edit and update this data, but initially I don't want to load the data into AngularJS. Is there a way to disable ...
3
votes
1answer
26 views

ng-switch-when: Does it recreate new controller each time and remove previous data when selecting different step?

I have a single page webapp based on angular.js And seems like I have performance problems. so I have the main controller and view for it which looks like this <div> <div ...
0
votes
4answers
19 views

ng-options how to set first select always blank

I am using angularjs in a project and in which I am using ng-options for generating . Initially when the pages reload and no option element is selected the html generated like below: <select ...
0
votes
0answers
35 views

angularjs: scope issue in directive when using $compile

I'm having an issue with scope lost when using $compile to create a dynamic template for my directive. See the code below (trimmed for clarity) : (function () { 'use strict'; ...
0
votes
1answer
19 views

Trying to get simple Google Maps example to work with AngularJS

I'm trying to migrate a simple Google Maps project (literally done from an example on their site) over to an AngularJS project. Let me preface this by saying that I'm new to both AngularJS and web ...
0
votes
1answer
19 views

AngularJS get form empty data too

i am trying to save a form data with angularjs into a database using php as backend. I have this html as the form <form ng-submit="newContactSubmit()"> <label>FirstName<input ...
0
votes
1answer
27 views

Scope in the modal window (AngularJS directive)

I am trying to use a modal window (see http://angular-ui.github.io/bootstrap/). In the parent controller I have the following function: $scope.open = function () { var modalInstance = ...
4
votes
2answers
32 views

Working with remove clicked element and scoping in angularjs

HTML <div ng-controller="BlogData" > <form ng-submit="removeTodo()"> <ul> <li ng-repeat="blog in bloges"> {{blog.name}} ...

15 30 50 per page