how to embed image into flex grid column

1.5k Views Asked by At

Is there an easy way to embed an image into a flex grid column? Something similar to:

<mx:DataGridColumn width="23" src="images/testimage.jpg"/>
1

There are 1 best solutions below

0
On BEST ANSWER

You need to use an item renderer like this one:

<mx:DataGridColumn>
<mx:itemRenderer>
    <mx:Component>
        <mx:Image source="images/testimage.jpg"/>
    </mx:Component>
</mx:itemRenderer>