This blog has been moved. This redirect you our new blog with all old posts..

Creating Data grid Using flex

Data Grid in Flex.


<mx:application mx="http://www.adobe.com/2006/mxml">
<mx:script>
<!--[CDATA[ import mx.collections.ArrayCollection; [Bindable]-->
</mx:script>
<mx:panel paddingtop="10" paddingbottom="10" paddingleft="10"
paddingright="10">
<mx:datagrid id="dataGrid" dataprovider="{DGrid}" width="100%"
editable="true">
<mx:columns>
<mx:datagridcolumn datafield="Artist" resizable="true">
<mx:datagridcolumn datafield="Album" resizable="true">
<mx:datagridcolumn datafield="Price" resizable="true">
</mx:datagridcolumn>
</mx:datagridcolumn>
</mx:datagridcolumn>
</mx:columns></mx:datagrid></mx:panel></mx:application>

1 comment:

Anonymous said...

do you have some other example of data grid?