Hi Raj,
Yes, I think you might be able to do something like that. The NetUI
configurePopup tag allows you to provide JavaScript, in addition to
the framework JavaScript that is executed when a Forward("auto") is
returned to close the popup window. Maybe you could write a JavaScript
routine forward to another page.
http://beehive.apache.org/docs/1.0.2/netui/apidocs/taglib/beehive.apache.org/netui/tags-html-1.0/configurePopup.html#onPopupDone
Your page A would include something like this...
<netui:anchor action="goNestedB" popup="true">
<netui:configurePopup width="500" height="400"
onPopupDone="myPopupDoneFunc"/>
go to Nested popup page B
</netui:anchor>
<netui:scriptBlock placement="before">
function myPopupDoneFunc() {
location.href="http://beehive.apache.org";
}
</netui:scriptBlock>
Just a thought. Kind regards,
Carlin
On Fri, Apr 25, 2008 at 6:46 AM, Balasubramaniam Rajagopal
<[EMAIL PROTECTED]> wrote:
> Hello beehive experts,
>
> I have a query regarding the usage of Popup. Is there a way wherein I
> navigate to a different page than the one from which I opened a Popup
> dialog. To be more clear
>
> 1 - Page A - Opens a Popup ( Page B )
>
> 2 - Page B then returns to the Nesting Controller.
>
> 3 - Now the Controller should return _auto to close the popup. The page that
> opened the Popup remains as it is. But what I want is once the popup is
> closed and the nesting controller's returnaction is called , I should be
> able to navigate to a different page on the main window.
>
> Is that possible ?
>
> Regards
> Raj
>