cancel
Showing results for 
Search instead for 
Did you mean: 

Removing address and other functionalities from a window

Former Member
0 Kudos

Hi,

I want to remove the address bar and other functionalities from the browser of an external window called from webdynpro. Could you tell me how to do this.

Regards,

Jayant.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Something like this:


//Do this before opening the window.
IWDWindow win = wdComponentAPI.getWindowManager().
createNonModalExternalWindow("url","title");
win.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);
//Check out the WDWindowFeature class for more features.

Regards,

Satyajit.

Answers (1)

Answers (1)

former_member85655
Active Participant
0 Kudos

.

Message was edited by: Arun Bhat J