日期:2014-05-17 浏览次数:20710 次
Ext.BLANK_IMAGE_URL = "ext-2.2/resources/images/default/s.gif";
Ext.onReady(function (){
var globalFileArray = new Array();
Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = 'side';
Ext.state.Manager.setProvider(new Ext.state.CookieProvider());
uploadChoiceTranscode = Ext.extend(Ext.Window,{
constructor:function (){
uploadChoiceTranscode.superclass.constructor.call(this,{
width :300,
height :200,
modal : true,
closeAction:"close",
layout:"fit",
tbar:[
{id:'add',text:'添加'}
],
title : '选择旋44f度',
buttons:[{text:'确实',handler:this.sureTransCode,scope:this},
{text:'取消',handler:this.cancelTanCode,scope:this}]
})
},
cancelTanCode:function (){
this.close();
}
});
t=new uploadChoiceTranscode()
t.show();
});