| Author |
popup window
|
etti eitan
Greenhorn
Joined: Sep 24, 2011
Posts: 8
|
|
Hi,
When I open new popup with modal equal to true I still able to click on buttons, works with keyboard, write to text box on IE8.
On FF it works OK (all events and action are disable until the popup is close).
Why is that and what need to be done ?
Thanks
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8430
|
|
|
That's strange. Can you show us the code where you create and show your popup?
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
etti eitan
Greenhorn
Joined: Sep 24, 2011
Posts: 8
|
|
Hi,
This is the code :
this.popup = new PopupPanel(false, true);
this.popup.center();
The problem was solved when I add the following line :
this.popup.setGlassEnabled(true);
|
 |
 |
|
|
subject: popup window
|
|
|