The following example shows how you can resize a DataGrid control in Flex using therowCount
property. By setting the rowCount
property, the DataGrid control is automatically resized so that only the specified number of rows are displayed.
In Flex 3 (post beta 2, you can grab nightly versions of the Flex 3 SDK from the Adobe Labs Flex 3 SDK page) the DataGrid control’s rowCount
and lockedRowCount
properties do not include the header whereas in earlier versions of Flex 3 and Flex 2 they did. For example, the old behavior was to display 3 rows and the data grid header if you set the row count to 4. The new behavior is to display 4 rows and the data grid header (for a total of 5 rows). Yay!