I followed this guide to display data from mysql database:
http://www.flashrealtime.com/flash-builder-4-and-php-data-services/
But what to do if i have datagrid like this:
<mx:DataGrid id="dataGrid" width="100%" height="100%" creationComplete="dataGrid_creationCompleteHandler(event)" >
<mx:columns>
<mx:DataGridColumn id="something" dataField="customerId" editable="false">
<mx:itemRenderer >
<mx:Component>
<mx:VBox>
<mx:Label id="l1" text=??????? ></mx:Label>
<mx:Label id="l2" text=??????? ></mx:Label>
</mx:VBox>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
When using an itemRenderer in a DataGrid, the value of the entire “row” is stored in the “data” object