Hi,
Is there a way i can gide the Browser Toolbar when i ran the report. When i clcick on the Hyperlink in a Report the source report should open as a windows with out Browser Toolbar
Thanks
Kalyan
Do u want to hide the different modes of running a report like in HTML, PDF, CSV, XLS etc in report viewer.
Plz clarify..
Srik
Yes, Apart from that i want to hide the IE browser buttons like Standard Buttons (Back, Refresh ... ) , Addressbar(URL)
Thanks
One solution to disable browser buttons is thus :
Create a separate web page in which users enter their logon credentials (username, password). On the submit button, redirect the form to Cognos Connection logon form, but open it in a new window in which the buttons have been deactivated.
***************************************************
<SCRIPT LANGUAGE="JavaScript">
function goNewWin() {
window.open("CRN_login.html",'TheNewpop','toolbar=0, location=1,directories=1,status=0,menubar=0,
scrollbars=0,resizable=1');
}
</SCRIPT>
<A HREF="javascript:goNewWin()">User Logon Details</A>
***************************************************
This is the code for a straight forward hyperlink. It isn't too difficult to change this to submitting a form.
Hi,
Yes we are following that method only, but that works only for the main report, if u have sub reports meaning if u call a other Cognos Report from the main report its not disabling, how do we disable in this situation? do we need to chnge any configuration files to achieve this ?
Thanks