Posts by Renan Rafael Bertoldo • 993 points
10 posts
-
0
votes1
answer145
viewsA: How to pass data from one screen to another with Native Localstorage and Ionic 3?
I’m not sure I understand your question exactly. Inside the button you pass as parameter the key you want to edit, the same one you used in Storage.set storage.get(SUA CHAVE AQUI).then((val) => {…
-
-1
votes1
answer683
viewsA: APK Ionic 3 Does not install
This is because it is not an official application of the play store, because you generated as debug. In your phone’s settings there is an option to allow install from unknown sources, if I am not…
-
0
votes1
answer513
viewsA: How to read an array string in Ionic/Angularjs or Javascript and move to directives?
Create an object within the class called sessao or create and extend an interface Then pass this created object inside your method to receive data from the array sessao = {data: '', weight: '',…
-
1
votes1
answer1144
viewsA: jQuery File Upload error parseMetaData
Problem solved. The problem was in the jquery version. Just switch from version 1.11.0 to 1.11.1 example: ajax.googleapis.com/ajax/libs/jquery/1.11.0 for: ajax.googleapis.com/ajax/libs/jquery/1.11.1…
-
-1
votes1
answer1144
viewsQ: jQuery File Upload error parseMetaData
This morning the jquery File Upload stopped working in all the places I use, I have a local base and another online, but both have the same error: Uncaught Typeerror: Cannot read Property…
-
1
votes1
answer611
viewsQ: How to change the folder in jQuery File Upload plugin?
How to change the folder where the jQuery File Upload plugin fetches the images to display? Currently the folder is "files" but I could not find the location where it is indicating the folder to be…
-
82
votes5
answers86551
viewsQ: Upload a file with AJAX
I wonder if there is any simple way to upload files via AJAX + JSON. If there is, what would it be?
-
-1
votes3
answers3204
viewsA: Button next to text bar with Bootstrap
Filipe.Fonseca replied, but if you want to do this only for the field in question use directly in the style of the field `style="width:90%;"` or create a new style for this field…
-
0
votes2
answers765
viewsA: Login system for drawing in php
from what I understand you will have to do the following, this assuming you are using mysql: $numero = "numero do sorteio"; $email = "email digitado"; $sql = mysql_query("SELECT * FROM tabela WHERE…
phpanswered Renan Rafael Bertoldo 993 -
1
votes8
answers1132
viewsA: Can you use a variable above when it is declared below?
this is kind of unlikely that you get by the fact that unlike javascript PHP runs only when the page loads, what I recommend you do is an AJAX call to change the name
phpanswered Renan Rafael Bertoldo 993