File Upload to Appery Database does not work on android
yes
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
yes
ok, thank you. reporting this issue...
Hi are there any updates on this issue? I am having issue with file uploader on the device but not in browser simulation.
Im using Galaxy S III (SCH-I535) v4.3
Ok thanks.
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/...
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);Please tell us what device Model and OS version you are using?
Have you tried test it on other devices?
Samsung Galaxy S II SCH-I535 4.3
I only have one device