cancel
Showing results for 
Search instead for 
Did you mean: 

Opening the Pop-Up as a new external IE window

Former Member
0 Kudos

Hi,

I am oppening the pop up as a new external window by getting the deployed URL and passing the parameters through the URL. But when i tried to pass 10K values through URL its not working fine. Can any one suggest is there any limitation of passing Prameters through the URL?. if so is there any other way to pass a huge data?.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Pass them with data binding, thats what it is for, there's no need of do it through the URL.

Make both popup and view share the data node with the compcontroller context.

Regards

Julio C. Herrera

Former Member
0 Kudos

when i tried to open it as pop-up, i was unable to print the sheet. so we opened it as a new IE window.Can some one provide other ways of doing it?

Qualiture
Active Contributor
0 Kudos

Hi,

Like Julio already mentioned, use data binding. It is really bad practice to pass parameters via URL arguments.

Create a new view, add it to a new window, bind the appropriate context elements, and open the window as a popup from your application via:

(IWDWindowInfo winInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("YourWDWindow");
IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(winInfo);
window.show();

Hope this explains

Best regards,

Robin van het Hof