cancel
Showing results for 
Search instead for 
Did you mean: 

remove standard toolbar of IE

Former Member
0 Kudos

Hi

We are using "createExternalwindow()" to open contents in a new window. Is it possible to remove or disable the standard toolbar of the browser

reuben

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi reuben

It is possible to remove the standard toolbar of the browser. You can use the removeFeature of the Window object.Which Support Pack version are you using. Only versions above SP8 i guess support this feature.

if you require more information let me know.

regards

ravi

Former Member
0 Kudos

Hi

We are using SP10. Thanks we will try it out.

reuben

Former Member
0 Kudos

hi

Now its working. Hmm seems like a new feature. Thanks for your help

reuben

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Reuben

you can use this code to remove the standard tool bar of browser.

IWDWindow win = wdThis.wdGetAPI().getComponent().getWindowManager().createExternalWindow(<url>,<title>,false);

win.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);

win.removeWindowFeature(WDWindowFeature.TOOL_BAR);

win.removeWindowFeature(WDWindowFeature.MENU_BAR);

Kishore