Posts by Marcelo Tadeu • 141 points
4 posts
-
2
votes3
answers218
viewsA: Textview when clicking , increase certain value that is in Edit text
Friend, First of all set in your textview that it should accept only numbers: android:inputType="number" Then, just put a setOnClickListener to increase the value: tvAdd10 = (TextView)…
androidanswered Marcelo Tadeu 141 -
0
votes1
answer53
viewsA: how to pass the BRAND variable that receives an Array per Javascript URL to another page? what am I doing wrong?
Friend, to mount the url with various parameters you need to include the symbol & instead of spaces. Besides, Voce also cannot pass a variable inside a string like this doing in the case of…
-
1
votes3
answers1659
viewsA: Set a variable in the value of an input
Without jquery it would be like this: var texto = 'abc'; var elemento = document.getElementById('iddoinput'); elemento.value = texto…
-
1
votes3
answers2980
viewsA: AJAX Return Handling with JQUERY
Friend, you can post the return of your "confer.php"? Because ajax expects the return to be in JSON format, and if the return is a valid JSON it already parses to an object automatically. For…