Hello!
Spent almost whole weekend trying to display html text (generated by
flex own RichText editor) withis DataGrid cell. Tried item renderes
Label, Text, TextArea, without any success. Coud it be a bug?
Text of course ir wrapped in CDATA, no errors, no warning from
compilator. Monday is deadline to release woring app to client, and i
still stuck without solution.. Any help would be greately appreciated!
Juris
Part of the code below:
<mx:DataGrid id="izsutitasVestulesGrid"
dataProvider="{nosutitieMeiliData}" variableRowHeight="true">
<mx:columns>
.
.
removed some lines..
.
.
<mx:DataGridColumn headerText="submitedHTML text" dataField="vestule">
<mx:itemRenderer>
<mx:Component>
<mx:Text htmlText="{data.vestule}"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
<mx:DataGridColumn headerText="Nosutits" dataField="sent"
itemRenderer="Label" />
</mx:columns>
</mx:DataGrid>