cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with a navigation from a Popup Window in an other Window

Former Member
0 Kudos

Hi Experts,

i have a problem with a popup window. I explain my problem. I have a DC Component in which there are two different Windows (MainWindow and PopupWindow) and one of this Window is a popup Window. I desire to navigate from the popup window to the main window of the component. Is there a way to accomplish that ?

I have created the popupWindow and it works very good.

Thanks a lot for your help.

Gregorio Perillo

Edited by: GregorioPerillo on May 28, 2010 5:45 PM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi ,

By using this code you have to Open Popup Window

public void popup( )

{

//@@begin popup()

poplink=wdComponentAPI.getWindowManager().createModalWindow(wdComponentAPI.getComponentInfo().findInWindows("Wd_POPupwindow"));

poplink.setWindowPosition(500,30);

poplink.open();

//@@end

}

Wd_POPupwindow-- This is Window Name Under this window you can create in View that view having OK and Close Buttion.

When click on Submit button that time you call the popup method. that time you will get popup window

Regards

Vijay Kalluri

Former Member
0 Kudos

Hi Kalluri thanks for your help but i know to open and close my popup window. I want fire to an other View in an other window from the popup when i close it. Thanks a lot.

Former Member
0 Kudos
Former Member
0 Kudos

Hi Himanshu thanks a lot for your help but i have red it yet when i creted the window for the first time.