cancel
Showing results for 
Search instead for 
Did you mean: 

Opening application with no Address Bar

Former Member
0 Kudos

Hi,

We are developing an external WebDynpro application that should start-up with no Address Bar and Standard Buttons Bar.

Does anyone has a solution for running the application/browser with no Address Bar and Standard Buttons Bar.

Thanks in advance,

Aviad

Accepted Solutions (0)

Answers (2)

Answers (2)

vijayakhanna_raman
Active Contributor
0 Kudos

Hi,

byte[] pdfContent={here document is created i.e returned from RFC};

IWDCachedWebResource pdfResource=WDWebResource.getWebResource (pdfContent,WDWebResourceType.PDF);

IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(resource.getAbsoluteURL(),"");

window.removeWindowFeature(WDWindowFeature.TOOL_BAR);

window.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);

window.removeWindowFeature(WDWindowFeature.STATUS_BAR);

Regards,

Vijai

Former Member
0 Kudos

Hi,

If you are using <i>"createNonModalExternalWindow"</i> then there is no way to change the window style.

Regards,

Satyajit.