1

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?

Anandan
  • 983
  • 3
  • 13
  • 28

1 Answers1

2

The modal option on Ext.Window defaults to false, so just don't include that option and the dialogs won't be modal.

Evan Trimboli
  • 29,900
  • 6
  • 45
  • 66