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)
HTML Tags in PDF
jha
hi everyone,<br />
<br />
i got a dataset that contains column values like<br />
<br />
<pre class='_prettyXprint _lang-auto _linenums:0'><ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul></pre>
<br />
i am outputting this column value to a DATA-element.<br />
<br />
unfortunatelly birt outputs the plain column value instead of formatting this as a html list.<br />
<br />
does birt support this feature?<br />
<br />
<br />
BTW: i am using birt 2.6.1<br />
<br />
<br />
thanks for your replies
Find more posts tagged with
Comments
CBR
the data item prints out text as it is.
If you want the HTML interpreted use a dynamic text or a Text item.
I your case it might be easier to use the dynamic text. Just output the column in dynamic text and it will return the HTML formatted string. The difference is that the BIRT framework is assuming that you want the text to be formatted using the tags instead of printing it as it is.
jha
thank you very much. this solved my problem.
i have tried the text element before but it didnt work.
with the dynamic text element it did.