• 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

How to display menu items even it exceeds jsp size

 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have four jsps as four frames to another jsp.In this i have menu items in top.jsp. On mouseover of menu in top.jsp, menu items will be displayed.But menu items exceeds top.jsp size.Below top.jsp i have right.jsp.Is there any possibility to display those menu items completely not relative to jsp size.I heard that it is possible through z-index option.But i cant make it possible even using z-index option.Can anyone please help me to do this.Thanks in advance.
 
author
Posts: 297
5
Android Firefox Browser Fedora
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The answer is to stop using frames. Combine the output your components on the server side into one page to be delivered to the browser.
 
SaiManasa Dasari
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for Your reply Rob.Is there any possibility to make it work with frames?please can anyone help me in this.I cant change frames as it involves more changes in my case.
 
Rob Crowther
author
Posts: 297
5
Android Firefox Browser Fedora
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No, there is no way to do it with frames. The frames can't display any content outside of the frame window in the same way that a normal page can't display content outside of the browser window.
reply
    Bookmark Topic Watch Topic
  • New Topic