Re: Dialog Box Appears Behind Another Widget

2012-12-03 Thread Francois ANDRE
Hi, I've had the same issue with gwt-openLayers and DialogBox. The solution I've found was to force the dialogBox z-Index to a high value: final DialogBox box = new DialogBox(); box.getElement().getStyle().setProperty(zIndex, ); It has worked for me. François Le lundi 15 décembre 2008

Re: Dialog Box Appears Behind Another Widget

2008-12-16 Thread WebDude
Thanks. Unfortunately, no combination of show/hide seems to fix the problem for me. On Dec 15, 4:53 pm, rakesh wagh rake...@gmail.com wrote: never used openlayers... but try this: for your dialog box, where you do dialoBox.show(), call the .hide() method first and then call ..show(); or

Dialog Box Appears Behind Another Widget

2008-12-15 Thread WebDude
I'm using the gwt-OpenLayers plug-in. In Firefox and Chrome, any DialogBoxes appear beneath the Map widget. It makes things a little tricky for modal dialogs. In Hosted mode and IE it works fine. I've dried modifying the zIndex of the dialogs and the map to force the dialogs to appear on top.

Re: Dialog Box Appears Behind Another Widget

2008-12-15 Thread rakesh wagh
never used openlayers... but try this: for your dialog box, where you do dialoBox.show(), call the .hide() method first and then call ..show(); or try .show() .hide() .show in a sequence and see if it works... its basically about setting the proper z-index. On Dec 15, 3:26 pm, WebDude