I am trying to display special characters in a column of mx:AdvancedDataGridColumn as value. For example, i am trying to display copy right symbol, trademark and other characters with HTML code.
I want to display below data
Special Characters: ¢ ©® ™
with below html encoded content:
<b>Special Characters:</b> ¢ ©® ™
As of now mx:AdvancedDataGridColumn displays the data as is. That is displays the tags (HTML encoded string as is)
sample code: < mx:AdvancedDataGridColumn dataField="htmlContent" >
Here HTML can be anything. Please adivse how to do this.