如何关闭extjs desktop.window然后打开它

时间:2010-12-17 04:46:35

标签: extjs desktop

我要关闭窗口然后打开它。 我只是做window.close然后我想再次打开它但它不能并且有这样的错误c.getPositionEl().dom is undefined 我怎么能这样做。谢谢。

2 个答案:

答案 0 :(得分:1)

使用隐藏/显示,而不是关闭。关闭将破坏dom对象,因此出错。

答案 1 :(得分:0)

详细说明Keylan的答案。如果要重新使用它,则需要使用window.hide而不是window.close。将closeAction:'hide'添加到你的窗口配置中也很聪明。