AngularJS is an open-source JavaScript framework. Its goal is to augment browser-based applications with Model–View–Whatever(MV*) capability and reduce the amount of JavaScript needed to make web applications functional. These types of apps are also frequently known as Single-Page Applications. The ...

learn more… | top users | synonyms (2)

0
votes
0answers
2 views

Angualrjs Drag and Drop style is not working properly in Chrome & Firefox

In Angularjs Drag & Drop, When an item is selected and dragged off the item is not clearly visible in chrome and firefox.
0
votes
0answers
3 views

angularjs2 test Observable in karma/jasmine

according to the http client tutorial (https://angular.io/docs/ts/latest/guide/server-communication.html) I've created a simple webservice. The service works in the browser: import {Injectable} from ...
0
votes
1answer
10 views

angular post to obtain access token failed

would you guys help me to create an angularjs POST request version https://drive.google.com/file/d/0B6weCtBHDZU1eUFWcHpNNE5WTVk/view?usp=sharing. The idea is to obtain an access token so i can ...
0
votes
0answers
4 views

How can i bind and render HTML-Code like iframe or video from json file in Ionic Template

Iam currently working on an Ionic App which will show different news articles. The content of those articles is stored within a json file on my Server. the json looks like this: [ { "id": "us", ...
0
votes
0answers
6 views

Using jQuery UI resizable to resize the Angular Material Grid List

I'm trying to figure out how I can use jQuery UI's Resizable to resize tiles in the Angular Material Grid List. I figured I need to get the dimensions from the Grid List but am unable to. I tried ...
0
votes
0answers
6 views

Ionic app working fine in browser but not in phone

I have an Ionic app which has the firebase as a backend. App working fine with ionic serve --lab but when i build this app with phonegap build, .apk file installs and open its static pages correctly ...
-1
votes
1answer
21 views

click event not working in angular2

I am new in angular2.I have problem while calling click event.It gives me error. here is my code: <form> <input ngControl="email" type="email" placeholder="Your email"> <input ...
1
vote
1answer
30 views

Angular promises

I am running into an asynchronous issue with my stats controller. I have a controller that queries the db and returns the objects. In this controller I use the filter to get the ones with the platform ...
-2
votes
1answer
13 views

Create QR-Code with Angularjs (with a require.js environment)

I want to create a QR-Code with angular.js. I found this great work: https://github.com/monospaced/angular-qrcode But it doesn't work in environment with require.js ...
0
votes
1answer
13 views

issue about abort http request on angular.js

I try to write an interceptor that controls whether internet connection exists or not. If connection does not exist, it will show a message that "You have not connection" and it aborts the http ...
0
votes
0answers
6 views

Angular not working correctly with Meteor 1.3.1

I am following www.angular-meteor.com tutorial on a windows computer. But when I run meteor in console I only see: A blank screen besides socially... So it seems like some angular packages does ...
0
votes
1answer
31 views

Javascript Promises and updating variables

I've been messing with a way to sign in to Spotify and perform most data retrieval from a service in my Ionic app, but a promise is causing the code to pause entirely. Here is the relevant section ...
0
votes
1answer
34 views

Web api get call but in reponse it says undefined

I'm trying to call a web api POST method using angular js it get call. I try from postman utility it also get call and in respose give a json data.But in angular side i am not getting data in ...
1
vote
1answer
17 views

Check if form is touched

In angular I want to do this <script> //inside the controller $scope.myForm.$dirty{ //hide some divs etc. } </script> How can I do this only in JavaScript, without putting any ...
1
vote
2answers
45 views

Alternative for $watch

I have a directive that validates the inputvalue with a regex. Now I use $watch to check if the input value is changed, but due to performance I would like to try another approach. ...
0
votes
0answers
18 views

Console error in IE while using ng-options inside ng-repeat [duplicate]

My code will be go like this in UI <div class="row" ng-show="ab.getRow.process =='pnk'" ng-repeat="field in ab.getAllProcess"> <select ...
0
votes
0answers
4 views

Use Multi-level jQuery Dropdown Plugin with angularJS

Reference: http://www.jqueryscript.net/menu/Animated-Multi-level-jQuery-Dropdown-Plugin.html Original Website: http://danewilliams.uk/projects/jquery-dropdown/ Github: ...
0
votes
1answer
12 views

Grunt, Jasmine, Yeoman

I am using Yeoman to develop an AngularJs application and I am about to create a version of my application that I can ship. To make it possible I need to use grunt and run my tests first (grunt & ...
1
vote
1answer
13 views

Update view when scope change

Might be I am asking same question but I did not find the exact answer thats why I am putting this question again with proper code. <table class="striped responsive-table"> ...
0
votes
4answers
24 views

Appending an object to a object of properties and array of object using angular js

I have an object which contains 2 properties and array of 4 objects($scope.details) I am trying to append a new object as a property to $scope.details. this is the way i am trying: var ...
1
vote
1answer
9 views

Use dependency in base class without having to pass this dependency from inheriting class [duplicate]

In my quest to learn Angular2, i came across the following situation: 1 base class, which uses the angular2/http dependency 1 inheriting class which extends the base class How can I inject the ...
1
vote
1answer
13 views

Failed: null value in entry: name=null error while switching Popup window

I am trying to switch popup window of my AngularJS application. Following is my code: browser.ignoreSynchronization = true; browser.getAllWindowHandles().then(function (handles) { ...
0
votes
0answers
26 views

ng-options with multiselect inside ng-repeat is throwing console error in IE

My code will be go like this in UI <div class="row" ng-show="ab.row.process=='cks'" ng-repeat="field in ab.getFields"> <div ng-show="ab.fieldType[field]=='multi-select'"> ...
0
votes
2answers
22 views

Call function after directive initialization and loading data

i have a question about the directives in AngularJs, because seems like i don't fully understand them. So the situation is next: 1) There is a directive: // directive function myDir() { var ...
0
votes
0answers
30 views

Java Script Server side web api calls

So I'm working on my first website using angularjs for the front end and nodejs for the server side (I'm probably saying that wrong). I'm trying to find out, is it bad practice to make web api calls ...
0
votes
2answers
25 views

Combine Angularjs and java in the same server

I want to develop a web-server with java and to create an angularjs interface to configure the server. Right know I have two separate apps. I want to combine them in a way that when the server start ...
0
votes
0answers
6 views

Uploading a file using Protractor testing Failed

I'm looking to upload a file using Protractor testing. Ideal scenario: On the form, first the user should click the 'Upload File' button Next a window appears where they search for their file And ...
0
votes
2answers
23 views

AngularJS: multiple Factory Instances any prototypical inheritance

Plunker (Probably explains the issue without my description below) I have the following construct in my Angular-App (also see Angular Services for references): I use a Factory BaseService which ...
0
votes
0answers
15 views

Date parsing/converting with AngularJS

I am working on a personal project where I need to get a date using bootstrap-datepicker convert it to UTC and send it to an API formated as one of the ISO8601 formats ("yyy-mm-dd"). I am using ...
0
votes
0answers
4 views

Oauth invalid signature issue using $cordovaOauth in ionic

I'm having some issue generating a signature for my Ionic app using cordovaOauth module with the Yelp API (https://www.yelp.com/developers/documentation/v2/authentication) I'm trying to perform a ...
1
vote
0answers
24 views

Why npm tries to find package.json in the wrong directory?

I'm having a web app with TypeScript, Angular and several dependencies. npm of course is here also. package.json was introduced to the project from the begging by npm init and right now it looks like ...
0
votes
1answer
25 views

Angularjs app.run doesn't load

I have a problem with app.run(). In the main page app.run() is working. When I click to the menu button Events and in the page events.html app.run() doesn't work. But when I reload this page app.run() ...
0
votes
1answer
10 views

Sample projects for Asp.net5 + AngularJs2 to download

Can any one share me the sample projects with Asp.Net5 + AngularJS2. I wanted to learn this, and I am looking for the sample application with basic login, routing features and basic stuffs. Please ...
1
vote
0answers
14 views

How to use date picker component from material-ui in angular2

I want to know the steps to use the datepicker component from material-ui.
0
votes
0answers
10 views

angularjs carousel overflow

recently i got into angularjs. started some testing and created simple carousel based on some examples. the weird thing is, overflow images are hidden from the left side and not right side. You can ...
-1
votes
1answer
22 views

How to import moment.js in ES6 using npm?

I am using angular js and nodejs along with ES6. I want to import the moment.js in the angular js code. I did 'npm install moment --save' Now I am able to see moment.js file in moment folder which is ...
0
votes
1answer
48 views

angularjs factory best practice

I know this question is going to be a bit debatable but I find this could actually be helpful to developers looking to do big projects with angularJS. Best practices (according to John Papa at least) ...
3
votes
1answer
16 views

Can't add ng-disabled directive ngJoyride

I need to add in the "nextBtn" the ng-disabled directive because that button need to stay disabled until a condition is true. Is it possible? The same thing is for ng-if or ng-class. I can't use them ...
0
votes
0answers
17 views

populating a second dropdown depending on the first one using a webservice angularJS

I have been trying to do this for the past week and i cant get it to work. i have a dropdown box called keyword, and i am trying to populate a second dropdown box named qualifiers based on what the ...
2
votes
1answer
16 views

Databind a list with angular, using a mvc controller method

I am new with angular, so i hope this question is not to stupid. as the title says, i wish to populate a list using angular and a method from a mvc controller. But i cannot figure out how to call the ...
1
vote
0answers
12 views

How to run a validation check with Ionic

I have written an ionic application and would like to know how(if) i can validate the ionic app. Much like validating HTML with W3C. Is there any way possible to run a validation check on the app. I ...
0
votes
1answer
12 views

angular-filter ng-repeat filterBy not equal to

I am repeating over a list of parameters using ng-repeat. One of the properties on a parameter is accessibility. Accessibility can be one of 3 values. Public, ReadOnly or Private. I would like my ...
0
votes
1answer
31 views

How to access one directive scope value to other directive in angularjs?

Actually my requirement is to get the one directive scope to another directive and need to perform the two way binding. I need to change that JSON values whenever the ng-model will get change. In the ...
0
votes
0answers
20 views

Providing a template for $confirm dialogs

I'm using angular-confirm to display confirmation messages in a lot of places in my app. For example: $confirm({ text: 'content', title: 'title text', ok: 'Yes', cancel: 'No'}) ...
2
votes
5answers
34 views

Use variable in another variable in Angular?

i'm trying to use this component https://github.com/alexklibisz/angular-dual-multiselect-directive but I don't know how could I pass data from the back-end to the component. I get the data from the ...
0
votes
1answer
8 views

ui-router angularjs prevent scrolling to bottom of page

ui-router scrolls to bottom of page when changing from one page to another, navigation is via $state.go() or $state.transitionTo() I tried calling $anchorScrollProvider.disableAutoScrolling(); but ...
1
vote
0answers
6 views

ng-map and place autocomplete not working in modal

I am using ng-map directive and place autocomplete API in my angularjs application. which are working fine. but the problem is I need Both in a bootstrap modal and when i am using same code in a ...
0
votes
2answers
47 views

CSS is not applied on footer angularjs

I have been struggling with this for two days now, though it looks very simple. As you see the footer i created in the picture here: I have two problems: I cannot seem to apply any css ...
0
votes
0answers
10 views

how to include nested dependencies with wiredep on grunt?

I have a bower package with a bunch of dependencies. When I add this package to a bower file in another project I would like to include the dependencies into index.html file. For example: Bower ...
1
vote
0answers
18 views

Google maps for AngularJS - InfoWindow is not set in correct position when marker clicked

I have a map that uses Google Maps for AngularJS, it has two markers, and every marker shows a infoWindow with data. The first time I click on a marker, everything works correctly. If I click the ...