Is there a way to deal with URLs from DataItems? In one of my reports, where I knew that I was dealing with a single URL link, I had to create two ResultSetColumns to deal with an href: One RS for the link (ActionHandle) and the other for the text to display, and it works well.
But what happens when a DataItem contains multiple links? Worst, what if the number of links varies depends on the data? Or what if the data contains html code? Any way to display this as html?
For example, each customer might have a number of linked documents, which might appear like: "<a href="
http://www.abc.com/doc1.txt">document1</a><br><a href="
http://www.abc.com/doc2.txt">document1</a>"
or: "Document1:
http://www.abc.com/doc1.txt Document2:
http://www.abc.com/doc2.txt". Some customers might have 1 document, other times 3, other times none...
Anyway to have Birt interpret these as HTML and have clickable links in the report? In the previous examples, use of an ActionHandle couldn't work because there could be multiple links per DataItem... Is there a way to make this work with Birt?
Thanks!