Hi..
When I upload file using kendo upload, it will hit the error event with response message "An asynchronous module or handler completed while an asynchronous operation was still pending.", but the file is successfully uploaded.
This only happen on the first time, subsequently is not getting the error anymore.
$("#files").kendoUpload({
async: {
saveUrl: "upload.aspx",
removeUrl: "remove",
autoUpload: true,
allowmultiple: true,
batch: true
},
localization: {
select: "Select Files"
},
complete: onComplete,
error: function (e) {
console.log(e);
},
select: function (e) {
},
dropZone: "#dropZoneElement",
showFileList: false
});