cancel
Showing results for 
Search instead for 
Did you mean: 

remove web dynpro address bar

Former Member
0 Kudos

*i want to remove window's address bar ,this vwindow is not a popup window,how to do this?*

*i am very hurry!!!!!*

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

It's a little surprising. You say that you want to disable the address bar of a window and it is not a pop-up window. Then what exactly it is.

If it is a pop-up window, you can just use

IWDWindow.removeWindowFeature(WDWindowFeature feature); i.e.

IWDWindow.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);

if iview should be opened in a new window, its window properties can be set using the "window features" property in the iview property editor. Please see SAP Note 748896 for more info.

Hope it helps.

Regards

Nikhil

Former Member
0 Kudos

Hi,

do you have an IView created?

If yes there is possibility to set the Window features. Here you can set JavaScript attributes like "toolbar=NO".

I hope this helps

regards

Gunter

Former Member
0 Kudos

Hi wangqw ,

Try this

IWDWindow win = wdComponentAPI.getWindowManager().

createNonModalExternalWindow("url","title");

win.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);

Regards,

srikanth

Former Member
0 Kudos

you said is popup window ,but my is not popup window, am i right?