var FileForm = Ext.create('Ext.form.Panel', {
border : false,
layout : 'hbox',
margin : '0 10 5 10',
hidden : true,
items : [{
xtype : 'filefield',
id : 'Filefield',
buttonText : '选择文件',
width : 360
}, {
xtype : 'button',
text : '上传',
width : 80,
margin : '0 0 0 10',
handler : uploadFiles // 方法
}]