87,996
社区成员




materialUploadFiled=Ext.extend(Ext.form.Field,{
constructor:function (){
materialUploadFiled.superclass.constructor.call(this,{
renderTo : Ext.getBody(),
id:'upload_choiceMaterial',
xtype:'field',
inputType:'file'
//validator:check_uploadFile
})
}
});
Ext.onReady(function() {
new materialUploadFiled();
});