Does anyone know how to change the RowCount of a DataGrid in flash after it has been created on the stage.

I am loading an XML file externally that contains the number of rows the DataGrid should have, but the problem is that because this file is not loaded at runtime, it just picks the default 3 items. Maybe I have to reload the DataGrid on the stage, or loop until it is defined.

Does anyone have experience of this?

link|improve this question

73% accept rate
feedback

2 Answers

Are we talking Flash or Flex? If we're talking Flex you can actually just use DataBinding. Just place the [Bindable] attribute above the variable that contains your XML and when you update your variable with new data, the grid will be updated too.

If you really do mean Flash, then I've got no clue.

link|improve this answer
feedback

Flex Project:

Use bindable to force updates when dataprovider changes.

<fx:Script>
    <![CDATA[
        [Bindable]
        private var _loadedXMLData : XML; // load xml and store here
    ]]>
</fx:Script>


<mx:DataGrid dataProvider="{_loadedXMLData}" width="100%" height="100%"/>

Flash project:

Be sure to set the data provider when the XML has been loaded. If it does not give you the correct amount of rows, try this:

// set flash datagrid component rows manually
dg.rowCount = 10;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.