How do I tell the display:column tag to escape xml entities contained inside the data it's outputting? (i.e. an equivalent of c:out's escapeXml attribute).
Thanks
Dmitry
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
How do I tell the display:column tag to escape xml entities contained inside the data it's outputting? (i.e. an equivalent of c:out's escapeXml attribute).
Thanks
Dmitry
This is currently not a built-in feature, but you could do something like this:
<display:column sortProperty="foo">
<c:out value="${foo}" escapeXml="false"/>
</display:column>
Thanks,
I ended up donig something very similar:
<display:column ... id="row">
<c:out value="${row.myProp}" escapeXml="false"/>
</display:column>