Posts by Felipe Miranda • 449 points
26 posts
-
0
votes2
answers146
viewsA: How to install Provider ?? Ionic 4
use: ionic generate provider <name> [options] From IONIC 4 IONIC CLI has changed some syntaxes.
-
-1
votes1
answer41
viewsA: Error: . toLowerCase() is not Function No Pipe search Ionic3
Friend the variable Erms is being defined where? the problem is this poses Terms = 'meutermsquevemdealgumplace'; defines your variable that will work.
-
0
votes1
answer68
viewsA: Pass SQL values to another Ionic 3 page
puts in your HTML type like this: <ion-content> {{nome}} </ion-content> the use of the angular bind with the interpolation causes its variable name to be linked to this.name…
-
0
votes1
answer562
viewsA: Validating an Ionic Login form 3
Validations in Ionic 3 can be implemented in the JS itself with a Formulario() or angular Froms. Here is a tutorial to implement a login screen with Formbuilder that I believe is the most efficient…
-
0
votes1
answer129
viewsA: How to write data in firebase with Ionic?
the use of Firebase in Ionic can be performed using Angular. Follow a cool tutorial to implement a crud with Angularfire2…
-
0
votes2
answers289
viewsA: Promise/Observable Chaining in IONIC/Angular
Buddy, good night. try like this: listaPedidosDetalhe.forEach(element => { this.baixaPedidoDetalheSistema(element.idPedidoDetalhe) .subscribe(pedidoDetalhe => { console.log(`Pedido…
-
0
votes2
answers33
viewsA: Ionic: Make the confirm button return to the first form error
Can use pure HTML with hyperlink follow example: Create the attribute in your questions <h2 id="Pergunta1">Pergunta 1</h2> when you want to navigate to question 1 create a hyperlink…
-
5
votes1
answer6678
viewsA: Change APK subscription key on Playstore
I went through something similar a while ago, I lost a key to an app of mine. when you lose the key or do not have coce can Abir a call on google. for this follow the steps below: Step 1: Generate a…
-
4
votes1
answer1203
viewsA: How do I change my IONIC app id to add in Google Play Console?
How have you changed the config.xml the next step is to remove and add the target platform on the command promp via the following commands: ionic cordova platform rm android Then add again ionic…
-
0
votes1
answer110
viewsA: IONIC - CHECK IF AN IFRAME HAS BEEN LOADED 100%
You can use the angular Event-bind: (load)="function()" As in the example below: <iframe name="chatFrame" src="http://..." (load)="dismissLoading()"></iframe> The function indicated in…
-
0
votes1
answer128
viewsA: Ionic 3, error while installing app-script 1.3.0
friend although your question is not very clear I went through this problem a while ago when I went to reactivate an old project. if it is the same thing I added in the index.html file the excerpt…
-
0
votes1
answer23
viewsA: Button directing to visited page
try to go to the root page instead of: home(){ this.navCtrl.push(HomePage); } Try: home(){ this.navCtrl.setRoot(HomePage); }
-
0
votes1
answer119
viewsA: Hide navigation arrow - Ionic
I think there are two ways to hide the back button in Ionic one of them is using Navcontroller when you want to go to a page without back button use: this.navCtrl.setRoot(IrparaPaginaSemBackButton);…
-
1
votes1
answer505
viewsA: Align ion-navbar elements - Ionic
lacked to put the ion-Buttons end tag: <ion-navbar> <button ion-button menuToggle > <ion-icon name="menu"></ion-icon> </button> <ion-searchbar…
-
0
votes1
answer1115
viewsA: Problem running "Cordova run" - A problem occurred evaluating root project 'android'
Friend, Android SDK tools are missing. Please try the following: android list sdk --all android update sdk -u -a -t <package no.> Packages 19, 20, 21 Or you can download támbem by Android…
-
1
votes1
answer856
viewsQ: How to change the Ionic 3 loading screen
How to change the screen loading ionic standard?
-
1
votes1
answer698
viewsA: Change Real Angular Mask 2
I advise you to use a transformation filter for your variable. angular.module("seuAPP").filter("nomedofiltro", function () { return function (input) { if (input.length <= 3) return input; var…
-
2
votes3
answers881
viewsA: How to redeem all data of the current month grouped by date?
You must use a Where clause in your code before group by: WHERE datetime_start BETWEEN value1 AND value2; if you only want the current week you can use this way: WHERE datetime_start BETWEEN…
mysqlanswered Felipe Miranda 449 -
2
votes1
answer480
viewsA: Script for comparing and updating Oracle database equemas
Oracle SQL Developer provides a resource for comparing different databases: I believe that with this tool your work will decrease.…
-
1
votes1
answer439
viewsA: Take data from a dynamic HTML table
Friend I believe that in its function of registering the student is not a matrix but a constant. No increment required in case more than one note comes. mysqli_query($this->conexao, "INSERT INTO…
phpanswered Felipe Miranda 449 -
3
votes2
answers18628
viewsA: How to insert a video into HTML?
Before HTML5, a video can only be played in a browser with a plug-in (such as flash). The HTML5 element specifies a standard way to embed a video on a web page. <!DOCTYPE html> <html>…
htmlanswered Felipe Miranda 449 -
1
votes2
answers209
viewsA: String for Double - Help!
Apparently your problem must be in converting String value to Double, tries to replace a comma to a point. Ex: String valor = "9,99" valor = valor.replace(",", "."); Double valorDouble =…
javaanswered Felipe Miranda 449 -
1
votes1
answer301
viewsA: Turn Columns into rows with bootstrap
This type of behavior is better to use javascript or Angularjs. With Angular you can create this type of behavior and reuse it faster.
-
-1
votes3
answers634
viewsA: How to make my program consume less CPU without disturbing its execution?
Decrease the amount of If s in your program, so I saw you can use an and in some if’s, this should improve a little.
-
0
votes2
answers677
viewsA: IOS emulator to test my project
for Voce to manage a deploy for IOS it is necessary to have a MAC. If Voce does not have a MAC you can use a virtual machine for this. On the Microsoft Academy website you can better understand this…
-
0
votes2
answers50
viewsA: Check type with jquery
I believe by changing the type of the button reset for button is enough, the code would look like this: <type='button' onclick="history.back()">CANCELAR</button>…