In this example you can update the value of the field by clicking on the confirmation button, however on my form there is no button. What do I have to do to get this item / field updated?
My form in JSFiddle: link
HTML:
<h4>Ang...
I'm doing a http request here for a webservice apsh , to make a request I do this:
validaLogin(user: User) {
var data = JSON.stringify({ email: user.email, senha: user.senha });
console.log(data);
return this.http.po...
For example, I have the following URL generated with ngRoute of AngularJS : https://www.projeto.com/edit/25 , 25 is the ID, I need to get this ID in PHP.
In searches, I found the following solution to get the URL in PHP:...
I need to search ionic 3 but I can not.
<ion-searchbar
[(ngModel)]="searchTerm"
(ionInput)="filterItems()"
placeholder="Buscar Pedido" >
</ion-searchbar>
filterItems(){
this.evento.loadPedido(this.searchTerm...
I'm doing client / server testing where the client is being developed with angularjs and the java + tomcat + jersey server.
When I try to make a client-side post, it gets to the server to the right place, but the answer is that it does not ar...
Using the Cordova plugin:
cordova-plugin-file
cordova-plugin-file-transfer
cordova-plugin-filepath
cordova-plugin-camera
cordova-plugin-actionsheet
Together they use this code model:
'// Present Actionsheet for switch beteen Camera / Libr...
I have an app with AngularJS using Material Design and md.data.table in the latest version of each Framework (respectively 1.6.4, 1.1 .0 and 0.10.x). In the documentation for md.data.table you can verify that there is a callback function...
Good morning!
I'm having a bad problem when trying to use the Smart Table, with paging, filtering and searching in my table.
I was with the table working when converting a JSON that consumed by an object request. In this case, I did:
$sc...
I have this function:
getProducts(){
this.auth.getProducts().subscribe(data => {
this.turmas = [];
this.produtos = [];
this.cursos = [];
for (var i = 0; i < Object.keys(data).length; i++ ) {...
Good evening, how do I instantiate Factory on the Controller? I have the following error:
var app = angular.module('App', []);
app.controller('LoginCtrl', function ($scope, $http, LoginFactory) {...
I have the above code