It does not work file uploads.
After the call upload function the message of succession - and everything! In the console, firebug does not see the request. The reason?
function uploadFile(formId, uploadControlller) {
var ajax = {
url: uploadControlller, // asp.net mvc controller
form: formId, //
isUpload: true, //
success: function () {alert('success') }, //
failure: function () { alert('failure') } //
};
Ext.Ajax.request(ajax); //
}
...
...