[Workaround] IE7 upload problem
Hello,
I have problem with Ajax Upload in ExJS. It works fine in Firefox 3.0 but when I try to do same in IE7 it looks like upload never ends. I used Fiddler to catch response and file is uploaded. Fiddler also shows me that server is sending success response but from some reason ExtJs is not catching that so it never enter success function. I’m pretty confused because this work with no problem in Firefox. Here is part of problematic code:
Code:
fileUploadPost : function() {
//some code that is not important//
this.cardPanel.items.items[3].getForm().submit({
method : 'POST',
params : {
'jsonData' : jsonData,
'jsonTaskData' : jsonTaskData
},
waitTitle : 'Connecting',
waitMsg : 'Sending data...',
scope : this,
success : function(form, action) {
var submissionPostResponse = Ext
.decode(action.response.responseText);
if (submissionPostResponse.submissionTicket) {
this.submissionTicket = submissionPostResponse.submissionTicket.ticketId;
}
},
failure : function(form, action) {
// TODO Handle form failure
}
});
}