Example:
<mx:DataGrid
dataProvider="{dataSource}"
rowHeight="40"
dragEnabled="true"
height="140">
<mx:DataGridColumn headerText="Image" dataField="image">
<mx:itemRenderer>
<mx:Component>
<mx:Image source="{data.image}"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
</mx:DataGrid>
--- In [email protected], arpan srivastava <[EMAIL PROTECTED]>
wrote:
>
> Hi
> Can I have an image on every datagrid row. I used Image class
but, I cannot add the image object into a FlexShape of which my
datagrid row is made.
>