tags:

views:

35

answers:

1

Hi,

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?

+1  A: 

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
Is it applicable to Panels also?
Anandan
Just now checked. It works. Thanks :)
Anandan