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
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