Posts by Antonio Correia • 151 points
6 posts
-
1
votes2
answers1001
viewsA: Data in ng-Model with input date shows error in Angularjs
What is happening is that Angular is not recognizing the variable motorista.data_vencimento as a valid date field, for this purpose when loading the variable motorista you can treat the field like…
angularjsanswered Antonio Correia 151 -
0
votes1
answer211
viewsA: Automatic Keyboard in Input with Ionic
With the Keyboard class you can check if there is already some input with focus, if you can not focus it and using the plugin you can force the keyboard display. Keyboard class:…
ionic3answered Antonio Correia 151 -
0
votes1
answer93
viewsA: Charts.js listing data from a BD (Ionic 3)
to make this select in the table variable you can use map to get an array only with the current potenta_field and use it in your chart configuration. this.terceiroDataset =…
ionicanswered Antonio Correia 151 -
0
votes1
answer143
viewsA: Search database-specific data in Ionic 3
It wasn’t clear what kind of Segments you have, but an alternative would be to filter after loading all products and creating a variable for each segment. Example below considering a segment for…
-
1
votes3
answers4164
viewsA: Mask for Ionic 3
has the https://github.com/amarkes/br-masker-ionic-3 when installing and importing you can use as <ion-item> <ion-input type="text" name="cpf" placeholder="CPF"…
ionic3answered Antonio Correia 151 -
0
votes1
answer363
viewsA: Function in Ionic 3
With two-way data Binding you can access the variable in . ts like this.occupation, so let’s say that when calling a Ubmit the onsubmit function below is executed onSubmit = () =>{ //acessando à…