• 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

can I view a pop up but have parent page active?

 
Ranch Hand
Posts: 276
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If I use "WindowName.focus();" to make sure that a pop-up remains on top of the parent window, can I keep the pop up visible on top, but have the parent window active? I want the pop up to display info that is needed for data entry, so want the pop-up to be visible, but the user able to do data entry onto the page from which the pop-up came.
Thanks for any info.
Kim
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You are not going to be able to do it, but you can use a layer on the page.
You could resize the parent and the child so they both can fit side by side too.
 
Kim Kantola
Ranch Hand
Posts: 276
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much for your reply. Could you elaborate on what you mean by "use a layer" ? Is that something differant than a pop-up window? Do you have a code example?
Thanks,
Kim
 
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
layer is DHTML, basically you can show and hide them. If you have all of these pop up pages code, I can show you a few things and probably help you code it.
the basic idea is here, but i can help you out more in the future
http://www10.brinkster.com/A1ien51/Scripts/ShowLayersCode.htm
Eric
reply
    Bookmark Topic Watch Topic
  • New Topic