Ext.define('Ext.window.myWindow', {
extend: 'Ext.window.Window',
alias: 'widget.myWindow',
config: {
width: 640,
closeAction: 'hide',
height: 400,
resizable: false,
shadow: true,
modal: true,
closable: true,
plain: true,
border: false,
bodyBorder: false
},
constructor: function (cnfg) {
this.callParent(arguments);
this.initConfig(cnfg);
}
});
ExtJS 4 组件扩展(一)
最新推荐文章于 2017-08-19 14:24:16 发布