Mega Code Archive

 
Categories / Flex / Grid
 

Variable row height DataGrid

<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:Script>                  import mx.collections.ArrayCollection;         [Bindable]         private var myDP:ArrayCollection = new ArrayCollection([             {label1:"#1", quant:1, Sent:true},             {label1:"#2", quant:2, Sent:false}         ]);            </mx:Script>     <mx:DataGrid id="myDG" dataProvider="{myDP}" variableRowHeight="true" editable="true">         <mx:columns>             <mx:DataGridColumn dataField="label1" headerText="Order Number" />             <mx:DataGridColumn dataField="quant" itemEditor="mx.controls.NumericStepper" editorDataField="value" />         </mx:columns>     </mx:DataGrid> </mx:Application>