Hi! I'm trying to display HTML links contained in a DB, but once the report is generated, the href tags are displayed as text and not as actual links...
Is there a particular item to set on the DataItemHandle so that HTML links can be displayed as links? It's in a dynamic report, here's the dataItem creation bit:
CellHandle cellDetail = (CellHandle) detailRowHandle.getCells().get(newAttributeIndex);
DataItemHandle data = elementFactory.newDataItem(name);
data.setResultSetColumn(computedColumn.getName());
cellDetail.getContent().add(data);
I found this:
http://www.birt-exchange.org/org/forum/index.php/topic/15569-embed-a-html-link-in-a-report/page__s__6cfe1c8f812c2295a49171933e4069f2 Could/Should I somehow incorporate the format in the setExpression of the computed column or something?
Thanks!