Questions tagged as 'angularjs'

1
answer

How to add and remove google-maps marker in javascript?

How to add a bookmark in google maps and delete when you keep selected for 5 seconds? function genera_marcador(lat, lng) { var marcador = new google.maps.Marker({ position: new google.maps.LatLng(lat, lng), dr...
asked by 03.03.2017 / 02:08
1
answer

How do I modify the values that php brings in json format from angular

<!DOCTYPE html> <html lang="es" ng-app="practica"> <head> <meta charset="UTF-8"> <script type="text/javascript" src="angular.min.js"></script> <title>Document</title> </head> &...
asked by 25.03.2016 / 21:04
4
answers

Hide and show according to AngularJS status

I have two High and Low Buttons, I want that at the beginning when all are true you only see the Low button and if one is in FALSE see the High button <table class="table table-sm" ng-init="GetData()"> <thead> &...
asked by 26.10.2018 / 05:01
1
answer

Problem with Spring Security and AngularJS

I'm trying to set up my site so that I skip the login in a view in AngularJS (my view in angle is called /validate#/validateusername/ ) but I could not get it, any suggestions on how I can achieve this? @Autowired public void configureGl...
asked by 29.01.2016 / 23:54
1
answer

Initial value of input type file from a FormControl

When I try to add an initial value to an input type file from FormControl I get the following error:    ERROR DOMException: Failed to set the 'value' property on   'HTMLInputElement': This input element accepts a filename, which may   ...
asked by 08.10.2018 / 14:42
2
answers

N Promises angular

I have on my controller: $scope.test= function () { var list = ["var0","var1","var2","var3"]; var result= 0; for (var x=0;x<list.length;x++) { result= result + TestService.loadVariable(list[x]) } $scope.resu...
asked by 18.10.2017 / 19:08
1
answer

Change word when I click

How can I hide the word volver and show it when the div that has the class collapse is opened and the word search is hidden, that is, when the div makes collapse , "this open " show the word return if it i...
asked by 03.11.2017 / 16:02
1
answer

Does not recognize ng command

I installed angular-cli and even then this command does not work, which can be or how I can add it.     
asked by 24.05.2017 / 17:56
2
answers

Only shows undefined the values captured in the inputs

Trying to capture two values through two input , one is text and the other is for date. I try to do this, with a modal window which appears when I press a button. The code is as follows: calendarioestu.html <ion-header-bar class="...
asked by 04.07.2016 / 02:14
2
answers

Problems integrating jQuery Validator with AngularJs

I have the following directive, which I got on the web to use jQuery Validator with Angularjs app.directive('ngValidate', function () { return { require: 'form', restrict: 'A', scope: { ngValidate: '='...
asked by 20.01.2016 / 01:10