Extjs window cannot show again

I am learning with Extjs4.

I did Ext.window.Window and used the show () method.

And I closed the window and again used the show () method, which I cannot view.

In a word, "Window", "Unable to show" again.

What can I do for this problem?

Sorry, my stupid English.

Thanks!

+4
source share
2 answers

The default window is configured to be destroyed when closed. To change this behavior, set closeAction to 'hide' :

 Ext.create('Ext.window.Window', { closeAction: 'hide', // ... 
+6
source

Source: https://habr.com/ru/post/1401748/


All Articles