Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Higher Z-order layer appears behind dropdownboxes

I have a "tooltip" layer that appears above everything on the page (using its z-order of 1,000), however, dropdownboxes which are on the lowest z-order possible appear ABOVE my tooltip at z-order 1,000.
Does anyone know any workarounds for this bug?
[258 byte] By [Billkamm] at [2007-11-11 8:08:48]
# 1 Re: Higher Z-order layer appears behind dropdownboxes
How did you create a "tooltip" layer?
Is it dynamically create a DIV or Layer on the fly?
If yes, I think it should appear above dropdownboxes.
Sync at 2007-11-11 23:34:53 >
# 2 Re: Higher Z-order layer appears behind dropdownboxes
I did some more research on Google and other forums and found that there is a bug in MSIE where for some controls it uses Windows controls instead of web controls and these windows controls display above everything on the page no matter the z-index. Dropdownlists are one of these.

One of the solutions I have found is to put an iframe behind your tooltip. I am still having a problem with some of my SPAN tags showing through AFTER a tooltip has been displayed for them (i.e. another they show through another tooltip from a different element)
Billkamm at 2007-11-11 23:35:53 >
# 3 Re: Higher Z-order layer appears behind dropdownboxes
I did some more research on Google and other forums and found that there is a bug in MSIE where for some controls it uses Windows controls instead of web controls and these windows controls display above everything on the page no matter the z-index. Dropdownlists are one of these.

When I was creating JavaScirpt Menu, I used DIV tag and Layer tag. All menu items (actually it's DIV) are shown above Server-Side Controls.
Sync at 2007-11-11 23:36:58 >