Hi all, I'm using the kendoUpload module on my ruby on rails application, everythings is except for the fact that kendoUpload fires an error event even if the file is correctly uploaded.
My javascript code is this:
the code from my controller gives me back a 200 ok http header (I see with on firebug), but (as you can se from the attach) the kendoUpload components tell's me that the file isn't uploaded but it is not true.
Any hint? Do you need more information?
My javascript code is this:
function onError(e) {
console.log("Error (" + e.operation + ") :: " + getFileInfo(e));
}
$("#media_filename").kendoUpload({
async: {
saveUrl: '/admin/media/',
removeUrl: '/admin/media/remove',
autoUpload: true
},
multiple: true,
upload: onUpload,
success: onSuccess,
error: onError,
complete: onComplete
});
the code from my controller gives me back a 200 ok http header (I see with on firebug), but (as you can se from the attach) the kendoUpload components tell's me that the file isn't uploaded but it is not true.
Any hint? Do you need more information?