form.getForm().submit({
waitMsg : '正在提交',
url : 'radioOtherPlaceUsedRecord.ejf',
method : 'POST',
success : function() {
Ext.Msg.alert("提示信息", "提交成功");
win.close();
form.ownerform.store.load();
},
failure : function() {
Ext.Msg.alert("提示信息", "提交失败");
win.close();
form.ownerform.store.load();
},
// params : values,
scope : this
});在firbug的网络中没有发现文件数据的上传后台也不能取到数据,求高手啊extjs