If I set the z-index of a popup panel to some value in GWT, say x, will it change the z-index of its parent panel (the default home page panel) as well?
In my GWT application, the z-index in css for a popup panel is 100. And then I manually change the z-index of the popup panel to some other value less than 100 using the getElement().getStyle().setZIndex(99);
. After that, the popup panel is invisible.
Is it true that the background panel inherits the zIndex from the css file of its child popup panel which it didn't change accordingly when the popup panel uses the getElement().getStyle().setZIndex(99);
?