cancel
Showing results for 
Search instead for 
Did you mean: 

How to open new window in web dynpro

Former Member
0 Kudos

I want to open a new window with specific URL in web dynpro on a button's click event. waiting for your suggestions to do this.

thank you,

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Create an action and put following lines in it and bind it to button's onAction event.


IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow( "http://www.jawed.info", "My Personal Website");
window.show();

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Refer the blog

/people/community.user/blog/2007/08/20/open-views-in-non-modal-external-windows--the-patch-version

Regards,

Sudhir

Former Member
0 Kudos

Hi,

Use

IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow( "<Your URL>", "<Title>");

window.show();

Regards

Ayyapparaj