cancel
Showing results for 
Search instead for 
Did you mean: 

Removing AddressBar, StatusBar from Default Application Window

Amey-Mogare
Contributor
0 Kudos

Hi,

I want to hide address bar from default application window!

This application would be triggered from a link in another (web dynpro / non-web dynpro) application.

And user should not be able to see where he is gets navigated.

So, is there anyway we can hide address bar from default application window of a Web Dynpro application?

Please help.

Thanks and regards,

Amey Mogare

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

IWDWindowInfo WindowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("MainWin");

IWDWindow Window = wdComponentAPI.getWindowManager().createModalWindow(WindowInfo);

Window.removeWindowFeature(WDWindowFeature.STATUS_BAR);

Window.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);

Window.show();

Regards,

Naga

Amey-Mogare
Contributor
0 Kudos

Hi Naga,

I already tried this code. But what it does is, it opens same window as new window in main application window.. so on screen I see two windows.. one parent window with URL clearly seen and 2nd child window which doesn't have address bar

So this is not as I need.

Are you getting my point?

Thanks and regards,

Amey Mogare

Former Member
0 Kudos

Hi,

You can remove the windows features to a modal pop-up window as by the above code .

For the non-modal eaxternal windows, i think its not possible.

Regards,

Naga

Former Member
0 Kudos

Hi,

to remove the address bar and status bar of the iview,

in iview property window feature property give the value as toolbar = no

Regards,

Naga

Amey-Mogare
Contributor
0 Kudos

Yeah.. it seems its not possible for Non-modal windows.

So we wont be able to modify window features of default application window. If we are opening a pop up window, we can do that.

Thanks and regards,

Amey Mogare

Answers (0)