I have a database column that contains the following:
<p><span style="color: #ff0000"><strong>$9,500,000.00</strong></span></p>
<p>$11,000,000.00</p>
In JSF 1.2 and Icefaces 1.8.2, this data would output fine. Under JSF 2.1 and Icefaces 3.0, I get what you see - just plain text.
Here's a snippet of code and the value is in the amount field:
<ice:column>
<f:facet name="header">
<ice:outputText value="Amount"/>
</f:facet>
<ice:outputText value="#{offDoc.amount}"/>
</ice:column>
I tried to wrap the ice:outputText tag with a tag but it didn't work. Any ideas?