extjs 上传文件问题
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
              
------解决方案--------------------什么版本的ext?可能是修改过文件上传了什么的,改为flash发送请求,这样firebug监视不到发送的请求