Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
32 views

I didn't understand where is the problem, I'm studying a new course in Coursera I'd copied the same code, but it seems that the scope doesn't work! Can u please help me? Thank you in advance. enter ...
Yezen's user avatar
  • 1
2 votes
2 answers
91 views

I'm still very new to Javascript and software development in general as this is my first job, and right now I am debugging a critical defect related to validation. I have a scenario where I have an ...
misteranon22's user avatar
0 votes
1 answer
44 views

In my angularjs, i have two controllers and use the variable which is referred in UI. From UI I am calling method OpenPage of NumTwoController which updates value of variable1 and NumOneController ...
useruser00's user avatar
1 vote
1 answer
215 views

I got an application which uses the 'oidc-client' module, which redirects and if logged in properly in that website I return the value {{auth?.loggedIn}} in my HTML. This value can either be true or ...
Lucas Mengual's user avatar
1 vote
1 answer
133 views

On button click need to get the dropdown values of each row dont know where the issue is not success in retrieving,the controller goes here, $scope.values = []; $scope.Benifit = [{ 'BenefitType': ""...
Dennis's user avatar
  • 297
0 votes
1 answer
617 views

Suppose I build an AngularJS component function FooController($scope, $element, $attrs, $http) { var ctrl = this; ctrl.bar = "WIBBLE"; } angular.module("app").component("foo", { templateUrl:...
Peter Wone's user avatar
0 votes
1 answer
77 views

I'm having trouble using an ng-model in a filter function. The input is currently named "search.anything". I can't change the name as it will effect other filters. I want to use it as a parameter in ...
JT__'s user avatar
  • 29
2 votes
1 answer
110 views

I am trying to emulate this Plunker, specifically adding a button to each row of an ag-grid. function ageClicked(age) { window.alert("Age clicked: " + age); } function ageCellRendererFunc(params)...
Mawg's user avatar
  • 40.5k
0 votes
0 answers
108 views

Helo everyone, I have a problem with angular js , I'm developing a small app for weather, and I am using open weather map , but i have error when i launch my app here's the result of the app when ...
Lujain Mohammad's user avatar
-1 votes
2 answers
80 views

I have this javascript code in a script called index.js and the html in an index.html, the problem is that the "message" variable is not painting it on the screen. Does anyone know what I'm doing ...
Dani Vision's user avatar
0 votes
1 answer
100 views

I thought I finally understand ng-repeat but now I do not know why the output include the curly bracket and how do I clear the screen after reading the output. Here is part of the output {"title":"...
findanswer's user avatar
0 votes
1 answer
37 views

Hi Guys I am an Entry level programmer for angularJS i tried to use ng-show but i dont know why its not been working. I used latest version of Angular js-1.7.9. <script src="https://cdnjs....
user avatar
0 votes
0 answers
261 views

There's a group called MDB (Material Design for Bootstrap) that has released some libraries for Angular. Good stuff. However, when I move their snippets from the parent level of app.component.html ...
AppDreamer's user avatar
  • 1,446
2 votes
1 answer
1k views

async function in OnInit firing after template has loaded Apologies if this has been asked. I couldn't seem to find something speaking to my specific scenario. In my controller, I define an $onInit ...
jjkl's user avatar
  • 403
1 vote
2 answers
854 views

I'm having a controller using StompJS to subscribe to a url (back-end is Spring Java) that returns an alternating string "list" and "box" every 5 seconds. I want to update my UI element when StompJS ...
user3758745's user avatar
  • 1,037
1 vote
2 answers
37 views

I'm very new to angularjs and I am trying to figure out ng-repeat with key/value pair. I have attached the following image with the expected result. Here's the code I'm trying but the result I am ...
wibwaj's user avatar
  • 113
0 votes
1 answer
149 views

JsonResult method not calling through $http call, I am working on a project that uses ASP.NET MVC, AngularJS I am calling a mvc controller from AngularJS. I am getting an jsonresult as in the call to ...
hashim's user avatar
  • 135
1 vote
1 answer
368 views

Angularjs: Subscribing to a Service event in Directive doesn't update I am trying to $emit/$broadcast an event in a Service and subscribe to it inside a Directive but it is not being fired. In this ...
Archie Archbold's user avatar
0 votes
2 answers
493 views

I am trying to pass a scope array element to a directive and changing the value of that element inside the directive but when I print the values of the scope element the changes that made inside the ...
Sameesh's user avatar
  • 353
1 vote
1 answer
37 views

I have a use case where I have to bind value to column in table by triggering a call to function which returns username. The table rows is looped using ng-repeat-start and pagination is used to ...
Am Novice's user avatar
  • 325
0 votes
1 answer
236 views

I am new to AngularJs. I am trying to upload a image file (.bmp,.jpg, etc) along with its label through Jax-RS post rest API but my control in not going into java post api from my angularjs controller....
Ankit Fulzele's user avatar
1 vote
2 answers
102 views

I am retrieving a row from a database using Angular JS and putting the data inside an editable form; the form consists of multiple radio buttons. I want to make sure when the data is retrieved; the ...
Ayan Bhattacharjee's user avatar
0 votes
2 answers
284 views

I have 2 controllers boxController.js and homeController.js. On box.html page I initialize the boxController.js. Now, I need to use ng-class on box.html page but the variable I need to use inside ng-...
wibwaj's user avatar
  • 113
0 votes
0 answers
171 views

I am extremely new to AngularJS and JavaScript in general so any help would be appreciated! I have two data sources Users and Pets - both are Array objects and I want them to display in a table on ...
nix27's user avatar
  • 1
0 votes
0 answers
140 views

In a directive I need to watch the formData to check if it is valid so I can enable the submit button. I've added an attribute to the directive in the view which I've added to the directives isolated ...
Patrick McDermott's user avatar