| Author |
Message |
Colin Smith Guest
|
Posted: Wed Sep 17, 2003 6:07 pm Post subject: Menu is displayed behind text fields & radio buttons on |
|
|
I'm testing COOLjsMenu for an application I'm building. I have to have it run on IE 5+ and NS 4+. On IE and Mozilla the menu items are shown over top of the text fields & radio buttons ok. But, on NS 4.8 the menu, is shown behind the fields and radio buttons. Any quick thoughts on how to fix this?
Thanks,
Colin Smith |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Wed Sep 24, 2003 12:59 pm Post subject: |
|
|
You have to hide these fields when submenu is visible. This is the only known way for older browsers including NN4.x.
| Code: | menu.onlevelshow = function(lvl) {
if (lvl.v && menu.root.lvl != lvl) { // level is visible and it is not the root
// hide fields
} else {
// show fields
}
} |
|
|
| Back to top |
|
 |
Ohng Guest
|
Posted: Wed Oct 08, 2003 2:50 pm Post subject: |
|
|
| I am also testing it, and see the same thing in IE6, except that it's going behind drop-down lists. I haven't tried in any version of NS yet. |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Wed Oct 08, 2003 5:43 pm Post subject: |
|
|
| Pro version has fix for this. |
|
| Back to top |
|
 |
|