• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Menu appears behind list bax

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
In my jsp i used "multiple select list box" and also page has dropdown menu, whenever mouse goes on menu button, a dropdown menu appears.problem is, menu apears behind listbox .i used header.jsp for menu.
please can anyone help me
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When you are posting questions on browser issues, it helps to say what browser and what version it is. More details = better results.

Internet Explorer has issues with select and flash. If you search through the forum, you woud see that this question is asked a lot. The solutions are

  • Move the elements on the page around so this does not happen.
  • Hide the elements on the page when the layer is opened.
  • Place an iframe behind the layer that has the element showing through it.



  • If you search the forum, you probably can get more detailed solutions.

    Eric
     
    Greenhorn
    Posts: 7
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator
    Try setting the z-index value on the two elements. The z-index value of the element that is getting hidden should be greater than the other element.
     
    Eric Pascarello
    author
    Posts: 15385
    6
    • Mark post as helpful
    • send pies
      Number of slices to send:
      Optional 'thank-you' note:
    • Quote
    • Report post to moderator

    Originally posted by Ashika Sharma:
    Try setting the z-index value on the two elements. The z-index value of the element that is getting hidden should be greater than the other element.



    z-index does not matter with this rendering quirk in IE

    Eric
     
    reply
      Bookmark Topic Watch Topic
    • New Topic