Flash Builder (Flex 4): datagrid populated by XML, how can I add an image in some of the rows?
I have a DataGrid table with columns name
, phone
.
In c开发者_JAVA技巧olumn name
I would like to add a picture near the name of the person.
How can I add a picture in a datagrid row?
<fx:Declarations>
<fx:XMLList id="people" xmlns="">
<test>
<name>moshe</name>
<phone>555</phone>
</test>
</fx:XMLList>
</fx:Declarations>
<mx:DataGrid id="dg" color="0x323232" width="532" rowCount="10" top="10" left="10" DataProvider="{people}">
<mx:columns>
<mx:DataGridColumn dataField="name" headerText="person name"/>
<mx:DataGridColumn dataField="phone" headerText="phone"/>
</mx:columns>
</mx:DataGrid>
I found a simple example on how to achieve that in the following URL:
http://www.flex-blog.com/samples/sample2/ImageDependingOnData.html
You can right-click on the Flex application and click on 'view source' to see the source code.
精彩评论