Click to See Complete Forum and Search --> : drop down menu overlapping combo box
jeffsansoft
08-01-2006, 12:17 AM
drop down list menu is overlapping on a combo box
in a html page. do you have any solution friends?
source code: http://www.webdevforums.com/showthread.php?p=65201#post65201
its a asp.net cotrol which contains the above code. ... its a top navigator control. the aspx page contains some combo boxes.
http://p.vtourist.com/2948672-Trave...vel_Picture.gif
you could check this link for screenshot
Siddan
08-01-2006, 06:34 AM
without looking thoroughly through your code I wonder if you have set any z-index properties to the menu. If not then set it to z-index:100 or something high, and see what happens
jeffsansoft
08-02-2006, 07:06 AM
z-index:100 for the div is also not working dude.
Divyakedia
06-24-2007, 08:07 AM
I'm having the same problem, have u been able to solve it yet? Pls do reply!
z-index does not solve the problem :(
Divyakedia
06-24-2007, 08:45 AM
And, hiding my combo, onmouseover of drop down menu is no good because my menu content does not fully cover the combo box, so it does not look good when the combo disappears leaving behind a blank space...
ajimenez
06-25-2007, 12:05 PM
I'm having the same problem, have u been able to solve it yet? Pls do reply!
z-index does not solve the problem
Unfortunately this is true in Internet Explorer. It' not going to work no matter what you set the z-index to because the select box is rendered as a window component and not as a document element. I had found a couple of workarounds but they require javascript.
The method I used required an iframe to "hide" the select box. Basically, you use an iframe in between the div dropdown and the select box (kinda like a sandwhich). Since the iframe is another window component it will cover up the select box if it's positioned after the select box in your markup. The dropdown div then covers the iframe. The javascript is used to re/position the iframe every time the dropdown div is activated.
Here are more details:
http://weblogs.asp.net/bleroy/archive/2005/08/09/how-to-put-a-div-over-a-select-in-ie.aspx
Hope this helps.
otuatail
06-25-2007, 01:24 PM
It would help if a working URL was available. I can't see the page but could it be re aranged so that the controll did not conflict.
Desmond.