View Full Version : [FIXED] Modal window opening another modal window not masking first window
lucasas
21 Jul 2008, 6:28 AM
After I update from SVN everything works fine, but when I click in the first window the model mask is removed and I can still click on the second window.
Im using browser, Firefox 3
Version from SVN
Linux
darrellmeyer
21 Jul 2008, 6:35 AM
Linux is not supported. Supported browsers and OS are listed here (http://extjs.com/products/extjs/). I tested the code in host mode / web mode IE and FF with no problems. Please post again if you have problems with a supported configuration.
lucasas
21 Jul 2008, 6:53 AM
Same problem using IE 7 in Windows XP, mask is removed when I click inside the window...
Can you see the "Entrar" Button enabled in the back?
http://extjs.com/forum/attachment.php?attachmentid=8225&stc=1&d=1216651944
darrellmeyer
22 Jul 2008, 7:54 AM
I am not able to reproduce the error. Can you post some executable test code?
lucasas
23 Jul 2008, 6:19 AM
When the windows are open, I cant click in dialog1, but if I click in the dialog2 body, dialog1 is enabled to be used.
import com.extjs.gxt.ui.client.widget.Dialog;
import com.extjs.gxt.ui.client.widget.LayoutContainer;
import com.google.gwt.core.client.EntryPoint;
public class Index extends LayoutContainer implements EntryPoint {
public void onModuleLoad() {
Dialog dialog1 = new Dialog();
dialog1.setHeading("Dialog 1");
dialog1.setModal(true);
dialog1.show();
Dialog dialog2 = new Dialog();
dialog2.setHeading("Dialog 2");
dialog2.setModal(true);
dialog2.show();
}
}
darrellmeyer
23 Jul 2008, 8:49 AM
Fix is in SVN.
Powered by vBulletin® Version 4.1.5 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.