我有一個彈出窗口沒有關閉按鈕,所以我必須刷新頁面才能關閉彈出窗口。在這種情況下,我想在彈出的窗口中添加一個按鈕來關閉。EXT JS關閉彈出窗口
這裏是js代碼:
function oseGetWIn(id, title, width, height)
{
var win = Ext.create('Ext.window.Window', {
id: id,
name: id,
title: title,
width: width,
height: height,
closeAction:'destroy',
autoScroll:'true',
});
return win;
}
我試圖添加以下,但沒有效果。
bbar: [
{
text: 'Close',
handler: function() { this.up('.window').close(); }
}
],
嘗試刪除'.'從'this.up( '窗口')的close();' – MMT
@MMT嗨,不幸的是,這是行不通的。我錯過了什麼? –
哪裏有'bbar'被添加?,在窗口上使用鼻涕..? – MMT