DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Flex Datadrig Wordwrap
// turn wordwrap on a datagrid column
<mx:DataGrid id="dg" width="100%" height="100%" rowCount="5" variableRowHeight="true">
<mx:columns>
<mx:DataGridColumn id="Col" dataField="@desc" headerText="Risk" width="400" wordWrap="true" />
<mx:DataGridColumn dataField="@status" headerText="Level"/>
<mx:DataGridColumn dataField="@count" headerText="Violation"/>
</mx:columns>
</mx:DataGrid>




