Modeless dialog in ExtJs
I want to implement modeless dialog boxes in ExtJS.
For exapmle, the new pop-up window/panel should not leave the originating screen as inactive. Both should be accessible at the same time.
开发者_运维问答How do we that?
The modal option on Ext.Window defaults to false, so just don't include that option and the dialogs won't be modal.
精彩评论