• 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

displaying content of first frame into second

 
Ranch Hand
Posts: 3852
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please have a look at this scenario. I have two frames on a page dividing page horizontally. First frame has a textbox which shows suggestions like google when user type sth in it. The problem is, the suggestions are displayed till the first frame only, the point (line) where second frame starts, the suggestions go in to background of it (they are there but not visible).

Is there any solution for it?

I could solve problem by removing frames but frames are very much mandatory and removing could be way much rework if at all it works without frame.

TIA.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Design your suggestion list to have a scroller or return less suggestions or redesign the site.

Eric
 
ankur rathi
Ranch Hand
Posts: 3852
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Eric Pascarello:
Design your suggestion list to have a scroller or return less suggestions or redesign the site.

Eric



Suggestion list has scroller and user can scroll down blindly and select any item also... but I want to show (should be visible also to user) ALL THE SUGGESTIONS (they will not be more than 10).

I suppose, I will have to get rid of frame for it... :roll:
 
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
If your JavaScript is good and the other frame is in your domain, you can write the div onto the other frame, but it will b a lot of code. (And I have my own project to worry about! It is after midnight and I am still working...)

Eric
reply
    Bookmark Topic Watch Topic
  • New Topic