Home
Analytics
How could I remove the title "BIRT Report Viewer" when I print the report with html
xiaohe
How could I remove the title "BIRT Report Viewer" when I print the report with html.
I have add the parameter showTitle=false before I print the report with html format,And I want to Know how could I remove the footer URI at the end of the printfile.
Find more posts tagged with
Comments
mwilliams
Hi xiaohe,
You might try using "run" in your URL rather than "frameset" when you're wanting the HTML output, this will run the report without the viewer frameset. This may help. Let me know.
xiaohe
Hi,Michael
Thanks for your advice,I hava try use "run",but there is no effect.
I need to print report and export report,so I use "frameset"
mwilliams
xiaohe,
Are you talking on the browser window title or the viewer title inside the browser window?
xiaohe
What I mean is the title in the print page,please view the attahment.
mwilliams
xiaohe,
I see now. You should be able to remove this in the viewerservlet.jar file. Or you could use the URL parameter __title=.
xiaohe
Thanks,Michael
use the URL parameter __title=. is a good solution
mwilliams
No problem. Let us know whenever you have questions!
zgp12358
<blockquote class='ipsBlockquote' data-author="mwilliams"><p>xiaohe,<br />
<br />
I see now. You should be able to remove this in the viewerservlet.jar file. Or you could use the URL parameter __title=.</p></blockquote>
<br />
I have the same question
"How could I remove the title "BIRT Report Viewer" when I print the report with html."<br />
But ,I use birt in maximo.<br />
I can't find the viewerservlet.jar file in maximo.<br />
Can you give me a example ?<br />
Thanks !
Arif shah
<blockquote class="ipsBlockquote" data-author="mwilliams" data-cid="64271" data-time="1273524224"><div><p>xiaohe,
I see now. You should be able to remove this in the viewerservlet.jar file. Or you could use the URL parameter __title=.</p></div></blockquote><p>Hi Williams,</p><p> </p><p>Can you please tell me how do we edit viewerservlet.jar to remove the window title? this file seems to be a binary class?</p>
kclark
<p>Without digging into viewerservlet.jar you could use some javascript in a text item to get around this</p><pre class="_prettyXprint _lang-"><script> document.title = "test";</script></pre>