Page 4 of 6

File Upload to Appery Database does not work on android

Posted: Mon Jul 15, 2013 2:10 pm
by Kapow36

yes


File Upload to Appery Database does not work on android

Posted: Mon Jul 15, 2013 2:13 pm
by Maryna Brodina

ok, thank you. reporting this issue...


File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 2:33 am
by teneika

Hi are there any updates on this issue? I am having issue with file uploader on the device but not in browser simulation.


File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 2:37 am
by teneika

Im using Galaxy S III (SCH-I535) v4.3


File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 2:40 am
by teneika

Ok thanks.


File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 2:46 am
by Illya Stepanov

Hi - can you describe with more details what exactly not working? What you have tried?

Is it related to this topic? - https://getsatisfaction.com/apperyio/...


File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 3:03 am
by teneika

While i click the "select a file to upload" button there is no action afterwords

my upload.js file is as follows

var file;

function fileSelectHandler(e) {
var files = e.target.files || e.dataTransfer.files;
file = files[0];
previewFile();
}

function previewFile() {

Code: Select all

 var previewContainer = $('table[dsid=preview]'); 
 var fileName = $('[name=fileName]'); 
 var fileContentType = $('[name=fileType]'); 
 // make the preview container visible once a file was selected 
 previewContainer.toggle(); 

 // set the file name 
 fileName.text(file.name); 
 fileContentType.text(file.type); 

 var reader = new FileReader(); 
 reader.onloadend = function(e) { 
     var fileContent = $('[name=fileContent_textarea]'); 
     fileContent.text(e.target.result); 
 }; 
 reader.readAsText(file);

File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 5:58 am
by Illya Stepanov

Please tell us what device Model and OS version you are using?
Have you tried test it on other devices?


File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 8:35 pm
by teneika

Samsung Galaxy S II SCH-I535 4.3


File Upload to Appery Database does not work on android

Posted: Fri Mar 07, 2014 8:35 pm
by teneika

I only have one device