cancel
Showing results for 
Search instead for 
Did you mean: 

Disable explorer toolbar in BSP

Former Member
0 Kudos

Hi,

We are implementing Appraisals via BSP based on the BSP application HAP_DOCUMENT. Is there a way in which we can hide the standard toolbar of the internet explorer via BSP?

Regards,

Devendra

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

We are not on Portals. Just the BSP on the intranet.

eddy_declercq
Active Contributor
0 Kudos

Then an initial start page is to my feeling the quickest and easiest way to go

Former Member
0 Kudos

if you need the whole application not to have toolbar then create a new ypage in the yhap_document and give that as a start page. and in there you need to redirect to different pages depending on several conditions(like if manger then redirect to document_todo.htm , if appraisee delegate then document_participant.htmetc). if you just need the document to open withouot the tool bar then in the document.htm or document_redirect.htm you need to call the pages in a popup.

this solution is a bit complex as the hap_document is using MVC and you should understand the whole application before you make the changes.

regards,

manasa

Former Member
0 Kudos

Hi Eddy,

Thanks for the reply, but in the BSP application the pages are opened via Navigation class. So can we achieve the same in this case?

eddy_declercq
Active Contributor
0 Kudos

Hi,

I would make a start page with a link which opens the BSP app as a whole in the way mentioned above and not via a page by page approach. All depends if you're using portal or not.

Eddy

eddy_declercq
Active Contributor
0 Kudos

Hi,

A way is to start up the application in a separate window/popup without the toolbars. The JS code might be

handler = open ("URL","popup","location=0,scrollbars=yes,toolbar=no, dependent=yes, screenX=0,screenY=0,height=600,resizable=no,width=800,status=no,menubar=0");

If you want to avoid the back and forward button, have a look at

/people/sergio.ferrari2/blog/2005/04/18/bsp-howto-back-navigation--the-nightmare-of-statefull-web-applications

Eddy