Extjs Window的使用
程序员文章站
2022-07-12 18:12:17
...
popWin = new Ext.Window({
id: 'popWinId',
title: title, //TagRulerRes.ADD_TAGRULER,
width: 600,
height: 380,
autoShow: true,
plain: true,
resizable: false,
shadow: false,
bufferResize: true,
modal: true,
closeAction: 'close',
//listeners: {show: handleShow},
buttons: [{
id: 'popWinOK',
text: TagRulerRes.OK,
handler: submitPop
}, {
id: 'popWinCANCEL',
text: TagRulerRes.CANCEL,
handler: closePop
}]
});
上一篇: spark window 的使用