A strange behavior for my uploader with IE11. Everything is ok with chrome,safari,ff but with IE11 onFileUploadError: function (item, response) is triggered. THIS IS NOT A RESPONSE FROM THE SERVER (everything is ok on the server side, file is completed and the server send an http 200 { … status : server }
Here what i got :
item = {context: undefined, file: File {…}, id: 1445359218440, name: “dsn-cockpit…”, size: 65836, sizetext: “64.29 Kb”, status: “error”, type: “txt”, xhr: XMLHttpRequest {…}}
Any idea ?
update : and no “onUpLoadComplete” event happens despite the server response !
The second one is an invalid JSON, and will not be processed correctly.
If the issue still occurs, please provide the full text of server response for the problematic case.
If response has valid status and can be parsed as JSON object, it must be processed as successful upload.
With IE, the file is correclty upload to the server, the server send back the answer but with IE, it’s the onFileUploadError event which is triggered with the parameter : {context: undefined, file: File {…}, id: 1445359218440, name: “dsn-cockpit…”, size: 65836, sizetext: “64.29 Kb”, status: “error”, type: “txt”, xhr: XMLHttpRequest {…}}