Has anyone ran into an issue (z-index) with a DateField on a panel in a ModalWindow.
In both Firefox and IE they both render poorly IMHO. I have tried overriding z-index of the ModalWindow lower image border and the Calendar div layer all to no avail. http://www.nabble.com/file/p13222461/Calendar.jpg It is very easy to reproduce via following code: =-=-=-=-=-=-=-=-=-=-=-=-= OverlapTest.java =-=-=-=-=-=-=-=-=-=-=-=-= public class OverlapTest extends WebPage { public OverlapTest() { final ModalWindow modal; add(modal = new ModalWindow("modal")); modal.setInitialWidth(300); modal.setInitialHeight(100); modal.setContent(new ModalPanel(modal.getContentId())); add(new AjaxLink("open") { public void onClick(AjaxRequestTarget target) { modal.show(target); } }); } } =-=-=-=-=-=-=-=-=-=-=-=-= OverlapTest.html =-=-=-=-=-=-=-=-=-=-=-=-= <html> <head> <title>Modal Window Overlap Test</title> </head> <body> Modal window + YUI calendar popup overlap issue test. <div wicket:id="modal"></div> Open modal dialog </body> </html> =-=-=-=-=-=-=-=-=-=-=-=-= ModalPanel.java =-=-=-=-=-=-=-=-=-=-=-=-= public class ModalPanel extends Panel { public ModalPanel(String id) { super(id); final DateField dateField = new DateField("date"); add(dateField); } } =-=-=-=-=-=-=-=-=-=-=-=-= ModalPanel.html =-=-=-=-=-=-=-=-=-=-=-=-= <wicket:panel> <div wicket:id="date"></div> </wicket:panel> Any suggestions on a fix would be greatly appreciated. -- View this message in context: http://www.nabble.com/YUI-Calendar-popup-in-ModalWindow-tf4630596.html#a13222461 Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
