Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Disable "style_report" in body tag
HansWurst
Hi guys,
is there a possibility to forbid bird to write the the "style_report" css class in the body tag of the generated html page.
I am usgin BIRT 2.3.1.
Regards,
Hans
Find more posts tagged with
Comments
HansWurst
Hi, it's me again,
I found in the documentation that there is a class called HTMLRenderOption which is a implementation class from the interface IRenderOption where I can set a variable per setEmbeddable(true) to disallow the engine to write out the <html> and the <body> tag.
Can I use this in a script?
My idea is to put something like this in the beforeFactory script:
reportContext.getRenderOption().setOption("WHAT_IS_THE_NAME_OF_THE_VARIABLE", Boolean.TRUE);
Am I right? What is the name of the variable?
Regards,
Hans
HansWurst
Who is interested, I found a solution for that!
reportContext.getRenderOption().setOption("HTMLType", "HTMLNoCSS");