Re: I need your help about pop up
Posted By:
Jerry_Lampi
Posted On:
Wednesday, December 31, 2003 03:00 PM
You can try setting the parent page data by:
window.opener.document.forms[0].WhateverYouNeed
If this doesn't work, you may have to force a submit of the parent page and then show the data. Pop-up's call to servlet stores necesary data in a bean or whatever and the main page gets it from servet:
Pop-up in BOBY html tag:
onUnload="window.opener.document.forms[0].submit();setTimeout('self.window.close()',200)"
Parent in FORM html tag: