Please check the attached link in which i have attached screenshot. The html dropdown gets hidden behind the aspx dropdowns that i created. Is there any solution to make the dropdown list be seen on top of the aspx controls?
http://img23.imageshack.us/img23/2553/imageydn.jpg
Thanks in advance,
Geetha
Please check the attached link in which i have attached screenshot. The html dropdown
Share
You’ve hit a rather nasty issue with the html drop-down listin IE. In short, it will always sit on top of most other controls, no matter what you set z-index to. There is no css way I know of to fix this easily.
However, the one thing that a drop-down list does not “leak through” is an IFRAME. The trick I usually use is to put an IFRAME underneath your drop-down “menu” and you should find the drop-down list no longer leaks through.
Nasty – but this is a long term IE gripe!
[Edit: to add an example, and also rephrase “put your drop-down ‘menu’ in an IFRAME”]
The following example illustrates the trick:
Note that if you remove the iframe from this example, you see the “leak through” problem re-appear.