Posts by Luciano Marqueto • 213 points
7 posts
-
1
votes2
answers207
viewsA: Error when picking up JSON elements
You are overwriting the content whenever it calls $estado.innerHTML = options; Place content in a variable and then apply to HTML (function(){ 'use strict'; var ajax = new XMLHttpRequest(); var…
-
1
votes1
answer1582
viewsA: How to create directory and upload file
Yes it is possible, This link has an example file upload https://www.w3schools.com/php/php_file_upload.asp To create the folder you use the mkdir command in the link below has more details…
-
1
votes1
answer632
viewsA: Floating Panel
An interesting output is the Floatingactionbutton which is very simple to implement http://developer.android.com/intl/pt-br/reference/android/support/design/widget/FloatingActionButton.html…
androidanswered Luciano Marqueto 213 -
2
votes4
answers16860
viewsA: How to get the current location of android device?
I recommend reading this post http://android-developers.blogspot.com.br/2011/06/deep-dive-into-location.html has a good explanation of how to do this, because there are dives important things you…
-
0
votes1
answer159
viewsA: Facebook SDK 4+ Logout Button. Error climbing Activity
This should only be a comment but as I am without privilege, goes as a response even, it seems to me that the button is null, debug and check if the method findViewById is finding your button, it…
androidanswered Luciano Marqueto 213 -
2
votes1
answer816
viewsQ: Disable Jquery button in Chrome
I want the button to be disabled during the ajax request and the loading icon to appear. I made the following script: $(document).ready(function(){ //Clicar no botão deletar selecionadas…
-
1
votes2
answers449
viewsA: Problems with login CAKEPHP 2.6.1
Remove in Appcontroller the line in the beforeFilter method. $this->Auth->allow('index', 'view'); And in Usercontroller replace: $this->Auth->allow('logout'); for:…