Skip to Content
0
Former Member
May 14, 2008 at 02:58 PM

How to display a view which contain interactive form in an external window

16 Views

Anyone know how to display a view which contain interactive form in an external window?

I managed to display the view in an internal window with the following code:

IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("PdfReportWin");

IWDWindow window = wdComponentAPI.getWindowManager().createWindow( windowInfo, true);

For external window, I tried this method : wdComponentAPI.getWindowManager().createExternalWindow(String URL, String title, boolean modal) but there are no parameter for view name?

Maybe this is not the correct way, really appreaciate if anyone can help.