Questions tagged as 'angularjs'

2
answers

Answer from http.get in Scope

I'm writing a driver in AngularJS that calls http.get to an API, and returns a 0 (for now). I can show the 0 by console without problems, but I can not show it in a $ scope in the front. App.js .controller('ssnGenAltaCtrl', ['$scope',...
asked by 30.12.2016 / 14:12
0
answers

How can I show google maps in ionic in another view?

Hi, I am trying to integrate the GOOGLE API in my Ionic project with Angular 1, I have managed to integrate it and it shows me the map. The problem is that when I create another view which has to take me to the map view, the map does not appear....
asked by 16.11.2016 / 14:15
2
answers

Go to the next value in ForEach - AngularJS

Friends, I have the following problem. I have an arrangement with 3 elements which I should consult in a BD. By the time one matches the base records, I need the loop to skip to the next value in the array. What I have so far is this: restA...
asked by 09.03.2017 / 17:31
1
answer

Search filter with a select

They asked me to add a search filter, but the thing is that it is done with Angular the application and I know very little about that. In the BDD there is a table called guia with a field called standby which gener...
asked by 18.07.2017 / 03:11
0
answers

Exception when Inserting in the Oracle DB

The error message is as follows:    2017-06-23 10: 35: 07.365 ERROR 888 --- [nio-2019-exec-1]   o.a.c.c.C. [. [. [/]. [dispatcherServlet]: Servlet.service () for   servlet [dispatcherServlet] in context with path [] threw exception   [Request...
asked by 23.06.2017 / 18:25
1
answer

How to make an ajax call after selecting a combo box option in angularJS

This is my html. <div class="pull"> <select name="ifield06" ng-model="selectCuenta" ng-options="cuentas as cuentas.asociado for cuentas in ListaCuentas track by cuentas.id "> <option value="">Cuenta</option>...
asked by 16.06.2016 / 21:18
1
answer

How to filter JSON data with Lodash

I have a factory that obtains the data from a WebAPI, it returns all the data, but the filter does not work: myApp.factory('Canchas', function($http){ var Canchas = {}; Canchas.list = []; Canchas.getDataFromServer = function getDataFromServe...
asked by 04.03.2016 / 18:41
1
answer

Multiply the value of an input by that of a list displayed with ng-repeat

I have an array of data that I show with an ng-repeat within a table. This fills 4 fields of the 5 that I have currently declared, the following is an INPUT in which I obtain the value of parts requested by the client. My question clearly...
asked by 09.02.2017 / 21:16
1
answer

How to use selectize for multiple options?

I have a question about how to use the selectize of angular to select several options, in two different selects, for example, the user has a series of options to select their tastes in terms of sports and assign a score of 1 to 10, footba...
asked by 09.04.2016 / 00:22
1
answer

Argument is not a function, got undefined

I have an error because I have changed my controller I have the same problem. var app = angular.module('myApp', []); app.controller('customersCtrl', function($scope, $http) { $http.get("dashLot.php") .then(function...
asked by 06.01.2016 / 16:04