Javascript - ExtJs - Window組件
阿新 • • 發佈:2017-09-01
true wid show 清除 back javascrip 顯示 dpa .get
Ext.create("Ext.window.Window", {
id: "AuthorizationWin",
title: "正在編輯……",
autoShow: true,
modal: true,//設置是否添加遮罩
layout: "anchor",
width:600,
height: 450,
items: [
Ext.getCmp("gridPanel")
],
listeners: {
beforeclose: function () { //關閉前銷毀window,不能在close時銷毀,否則遮罩沒法清除
this.destroy();
},
close: function () { }
}
});
id: "AuthorizationWin",
title: "正在編輯……",
autoShow: true,
modal: true,//設置是否添加遮罩
layout: "anchor",
width:600,
height: 450,
items: [
Ext.getCmp("gridPanel")
],
listeners: {
beforeclose: function
this.destroy();
},
close: function () { }
}
});
註意
1.所有組件都可以放入window,此時子組件不需要配置renderTo,只需要將它們作為window的items子項即可。
2.items子項必須先創建,最後創建window,否則子項不會顯示。
3.應在關閉window之前(beforeclose事件)銷毀它
Javascript - 學習總目錄
Javascript - ExtJs - Window組件