现在的位置: 首页 > 综合 > 正文

ExtJS 4 组件扩展(一)

2014年02月07日 ⁄ 综合 ⁄ 共 349字 ⁄ 字号 评论关闭
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);
}
});

转载地址:http://www.haogongju.net/art/1326031

抱歉!评论已关闭.