Skip to Content
0
Former Member
Sep 19, 2005 at 04:22 PM

Separate windows and context mapping

17 Views

Hi all,

I have tree views: A,B and C. I create also two windows: Main windows and secondary windows. The views A and B are embedded on the main window and the view c is embedded on secondary windows. I create also two application under project. The main application open the secondary application using following code:

try {

IWDDeployableObject iwdDep = WDDeployableObject.getDeployableObject("local/project");

WDDeployableObjectPart wdDep[] = iwdDep.getParts(WDDeployableObjectPartType.APPLICATION);

String url = WDURLGenerator.getApplicationURL(wdDep[0]);

IWDWindow window = wdThis.wdGetAPI().getComponent().getWindowManager().createExternalWindow(url,"MY Title",true);

window.open();

}catch (Exception e){

}

}

I want to pass parameters from application 1 to application 2. I tried mapping data from view B to component controller. Mapping data from interface controller to component controller and from view C to interface controller. It is not work.

Thanks ahead for any help.