0
當我關閉Ext.Window,然後創建一個新的Ext.Window時,出現錯誤:'0.manager.zseed'未定義。然而,這個問題只發生在IE 8Extjs err:'0.manager.zseed'is undefined
代碼:
var win = new Ext.Window({
id: 'winBLNo',
title: 'myWindow',
width: 360,
height: 120,
layout: 'fit',
items: [formGetBLNoRule],
closeAction: 'close',
buttonAlign: 'center',
buttons: [
{
text: 'OK',
handler: function() {}
},
{
text: 'Exit',
handler: function() {
win.close();
}
}
]
});
win.show();
幫我請。非常感謝。
什麼是formGetBLNoRule? – Aashray 2013-03-04 11:46:44
這是一個包含comboBox的簡單表單。但是,這個問題只發生在IE – Michael 2013-03-04 12:57:38