AngularJS (a.k.a. AngularJS 1) 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 applications are also frequently known as ...

learn more… | top users | synonyms (2)

0
votes
0answers
32 views

Why the values in dropdown are not getting saved?

I have a address object which inturn has nested objects i.e. permanent and postal. This address is part of a big form and the values of input boxes are being saved but not the dropdown(select) values. ...
-2
votes
3answers
29 views

pushing values from json into array

JSON: var res = { "response": { "data": { "profilesearchsnippet": [ [ { "profileInfo": { ...
0
votes
4answers
18 views

Angular JS date format to longdatestring

I am trying to convert date from my angular code "/Date(1481843459627)/" to any understandable date format. I tried this link but i was successful only if input was a time stamp. Any suggestions ?
0
votes
1answer
19 views

how to place updated data into specific element?

I have listed items and it's children using ng-repeat. have items = [ {item.id:1, item.name :'item1', item.children: [ {item.id:11, item.name :'child1', }, {item....
0
votes
2answers
15 views

Execute a function only after data from $http.get()

Im working with angularjs $http.get() request .On load of the page im doing two rest api call.The api is executing correctly.I have a button which use the data from the two rest api calls.I'm facing a ...
0
votes
0answers
6 views

angular 2 polymer elements style

I'm using Angular2 with Polymer Elements and it's working fine. But if I try to style some of the Polymer Elements, e.g. Paper-Input it does not work. I've tried to add the styles into the component, ...
0
votes
0answers
12 views

convert files(word,excel,pdf,images) into base64 angularjs

I am creating a webapp in which i need to store customer data into my sql(by converting it into byte[]), i do convert the data into base64 with javascript this is my controller of angularjs $...
0
votes
0answers
15 views

Date time picker with milliseconds

Is there any way I can get milliseconds in bootstrap . I am using DB2 time stamp for inserting the date time. So while performing the search I need to allow the user to select date and time with ...
0
votes
1answer
8 views

Node server to intercept all request from angular (http) to java spring backend

I am using express on node for routing and using angular as front end framework. I am using Redis for session. What i want to do is when ever i make http request from angular it should first go to ...
-4
votes
3answers
28 views

Create unique array from array

I have following Array var x = [ '{"id":"item1","val":"Items"}', '{"id":"item1","val":"Items"}', '{"id":"item2","val":"Items"}', '{"id":"item2","val":"Items"}', '{"id":"item3","val":"Items"}...
0
votes
1answer
12 views

angular intro.js not available

I have been trying to use angular intro js in my mockup angular js project the modal that asks whether the user needs to go through the tutorial is visible, However when I click the ok button that ...
0
votes
1answer
14 views

Angularjs $resource query method working but get method not working

Here is my factory method: .factory('lettersFactory', ['$resource', function ($resource) { var url = ""; if(ionic.Platform.isAndroid()){ url = "/android_asset/www/"; } ...
0
votes
4answers
29 views

Using ng-repeat object value as javascript parameter

I have a code that looks something like this: <tr ng-repeat="obj in objs"> <td onClick = "someFunction({{obj.val1}})">{{obj.val2}}</td> <td>{{obj.val3}}</td> </tr&...
-6
votes
1answer
19 views

What is the best way to learn angular js & angular 2

please suggest online video tutorials , books etc which would be helpful to learn
0
votes
0answers
12 views

download Excel with filtering in Angular JS

I would like to implement exactly excel-like filtering such as If there are 2 columns, one of name and other would be of age. Now when no filter is applied, filters are showing all data. When we ...
-2
votes
1answer
26 views

ng-repeat table,how to add some input(text) for one of rows,like the picture:

this table is created by ng-repeat,I want to add a row input for a row,just one,not all rows this is my html,how to add,thanks
-6
votes
0answers
40 views

What is the difference between {0} and [0] in Angular JS

I am getting error here -> theCredentials [0] I understand this [] uses as array but what is the meaning of this -> [0] and what is the difference between [0] and {0} "CMMHeader": { "AdminUserName"...
0
votes
2answers
14 views

How to reduce the ionic1 Slide box Autoplay speed?

<ion-slide-box on-slide-changed="slideHasChanged($index)" auto-play="true" does-continue="true"> <ion-slide> <div class="box blue"><h1>BLUE</h1></div> </...
0
votes
2answers
24 views

Encryption Decryption in angularjs 1

I want to use some API data to build a front app in angularjs 1. For that I have to decrypt the data first using AES128 and use it then send encrypt data to API. I can use crypto.js for that task but ...
0
votes
2answers
32 views

Confused in Calling function in angularjs using anchortag

i am working on one angularjs project.i have one dropdown in which new email,new contact,new calendar function is there.but these function is working on perticular page only like newmessage function ...
0
votes
4answers
40 views

Handling array inside array JSON in table

I have a JSON Response as follows JSON : var res = { "response": { "data": { "profilesearchsnippet": [ [ { "profileInfo": { ...
1
vote
2answers
29 views

Page title, description using angular-ui-router

I have tried / used all the possible references on stackoverflow and other tutorials but could not get page title, description to work. My state code looks like this $urlRouterProvider.otherwise(...
0
votes
0answers
12 views

Angular-trix rich text editor not working in IE 10

I'm using Angular-trix rich text editor, It's working fine in all browsers even IE 11, but It isn't working on IE10 when I'm using this in my Sharepoint 2013 site or Local host. It's continuously ...
0
votes
1answer
11 views

convert angular nvd3 chart as pdf/png

I am using angular nvd3 chart for plotting data on charts. I need to export my chart as pdf/png. tried with jdPDF. But It is not rendering css. Can anyone help me out this?
0
votes
0answers
14 views

Firebase Querys In a Factory

I am strugling with the Firebase Querys, I have this Factory: .factory("usuariosFac", ["$firebaseArray","$q","$firebaseObject", function($firebaseArray,$q,$firebaseObject) { return { ...
0
votes
0answers
20 views

Make changes in Elastic Search directly using Kibana

Is is possible to change values(add , delete , update) in Elastic Search using Kibana dashboard. Is it possible to create a plugin on the top of Kibana which uses certain set of apis & queries to ...
0
votes
0answers
27 views

AngularJS UI-Router Not Rendering Component Template

I'm trying to route an extremely simple example component in AngularJS 1.5.8. Spent about two days trying different things but am down to this extremely simple example. I've tried using ui-view name=...
1
vote
5answers
43 views

Chaining multiple $http.get() ng-init angularjs

Im working on a scenario where on page load i have 2 $http.get() request. One $http.get() are independent on another $http.get(). Every thing works fine.But in some situation my 2nd $http.get() ...
2
votes
2answers
26 views

AngularJS dependency injection - confusing syntax

I have the following code: <!doctype html> <html> <body> <div ng-controller="MyController"> Hello {{greetMe}}! </div> <script src="http://code.angularjs.org/...
0
votes
3answers
24 views

Sharing data between components with the same type in Angular.js 1

I currently have three components of the same type. For example, I have a component called 'Lister' and I have three Lister components that calls different apis (e.g. listing teachers, students and ...
0
votes
1answer
33 views

My angular form validation doesn't work

I use bootstrap with angular, and I disabled bootstrap's validation, angular still doesn't work. It seems that I already set everything. My code likes below, every input's validation didn't. <...
0
votes
1answer
38 views

Angularjs $q is Not Returning Promise

I am trying to call service method in Angularjs. The service method is called alright, however IT DOES not return any value to the function that called it in the controller. I will be glad if anyone ...
0
votes
1answer
12 views

Why do I get a nonassign error in the angular-bootstrap tabset?

<tabset class="paygrade-tabs"> <tab ng-repeat="tab in rps.currentPayGrade | orderBy: 'payGrade.code' : true track by $index" ng-click="changeTab(tab)" active="activeTabId === tab.id"> ...
0
votes
1answer
22 views

Display the result from a http post method only for the row on which the button is clicked on in AngularJS

I'm new to Angular. I'm trying to start/stop a windows service in .Net using AngularJS. UI has server name, status of the windows service and two buttons to start and stop the service. On clicking ...
0
votes
0answers
9 views

Set ng-animate to fade in image on page load

I am trying to get ng-animate to fade in an image on page load, but with little success. What am I missing out on? This is my code so far: HTML <img class="logo fade-in" src="images/dog....
4
votes
0answers
57 views

Implement different layouts for a (part of a) web page

I want to implement a coding playground. At the moment, I use flex-box to define the position of different panels. Here is a JSBin, and its html part: <div class="flex-box"> <div class="...
0
votes
0answers
15 views

How to download zip file after creating PDF with pdfMake

I am using pdfMake to create pdf document in my angular project. Meanwhile, I want to create the zip file containing my multiple pdf documents. Are there any possible to do so? Your answers or ideas ...
0
votes
1answer
16 views

Ionic controller definition

I am pretty new to angularjs and ionic and I've been running into one problem. Below I posted some code from the app.js file, and I've noticed that any time I define a new controller (the commented ...
0
votes
0answers
16 views

Controller/service, using the same user object for registration

Sorry quite new to Angular.JS/JS/Ionic, have been working with this login controller and have the task of creating a registration controller + service any advice on approaching this in a fashion of ...
1
vote
0answers
10 views

ngview with nodejs don`t load main page when reload/refresh url

in first load everything is ok but when i reload/refresh the page the main page don`t load and only the template load i use nodejs and express for route pages i think whe i try reload page app.get('...
0
votes
2answers
44 views

Get values from ng-repeat option

I have multiples DropDownList or "options" to select. I need to get all the values of each option when the user click on "Guardar cambios This is a part of my HTML: <div class="list"> ...
0
votes
1answer
15 views

Angular Material Datepicker opening position is wrong in Chrome

The md-datepicker element from Angular Material is opening at the wrong calendar position (eg a month or two in the future) from the default date, when viewed in Chrome. Similarly, if the years view ...
10
votes
1answer
82 views

Why does Angular run controller function twice for each model change?

I have Angular application made of following tiers: service() used for computations and data-munging factory() used as common data storage for multiple controllers few controllers() My controller ...
0
votes
2answers
11 views

AngularJS routing ui routeur

i'm french, sorry for my bad english I got a problem with ui routing : Error: Invalid state ref '({ sport: dataSettings.sport, championnat: dataSettings.championnat })equipes' My app.js betotopApp....
0
votes
1answer
25 views

how to pass functions between two directives

I am trying to access function from one directive to another, but it's not working. Below is the code. Main Directive: <test-list pros="data" pageLimit="paginationLimit()" moreItem="...
0
votes
1answer
12 views

Angular is not refreshing view after sending get request

Creating internet shop, and when i manage user cart page Angular is not refreshing view after calling deleteFromCart(), so i need to refresh page. What am I missing ? As I did promise with .then(f()) ...
-1
votes
2answers
11 views

Angular JS Inner Html for Ionic Framework

I am developing my application with angularjs and ionic, <div ng-app="myApp" ng-controller="myCtrl"> <p ng-bind-html="{{itemID}}"></p> </div> I would like to change ...
0
votes
0answers
21 views

Why does a nested ng-repeat modify the same data?

I am creating an array in my controller: $scope.payGradeDetails = _.map(roleProfileService.currentPayGrade, function(payGrade) { payGrade.competencies = competencies; payGrade.competencies =...
0
votes
3answers
9 views

How do I get an item number from a text input in an ngRepeat?

My HTML <body ng-app="myApp" ng-controller="myCTRL"> <form class="my-form" ng-repeat="item in items" novalidate> <h4>{{item.number}}</h4> <input type="text" ng-...
3
votes
1answer
22 views

Angularjs ng-model updates the variable for input element not for div element

So I'm new to Angularjs, but I'm trying to write the code for a comment area where users can put their comments. For this I'm using a div element with conteneditable="true" property. Here's my code ...