The docs are rather thin on this so if someone could help me out I'd
appreciate it.

Rather simple really, I've got a data model fed from XML output Excel.
The relevant bits look like:
<Worksheet>
        <Table>
                <Row>
                <Cell>
                                <Data>12.34</Data>
                        </Cell>
                        <Cell>
                                <Data>43.21</Data>
                        </Cell>
                </Row>
                // �
                // lots more rows
                // �
        </Table>
</Worksheet>

My model:
<mx:Model id="excelModel" source="exchange-rate-co
oked.xml"></mx:Model>

My DataGrid:
<mx:DataGrid id="dg">
<mx:dataProvider>{excelModel.Workbook.Table.Row}</mx:dataProvider>

I'm unclear on how to drill down to what I want here:
<mx:dataProvider>{excelModel.???}</mx:dataProvider>

<mx:columns>

<mx:Array>

What I want here is Workbook.Table.Row.Cell.Data containing: 12.34
<mx:DataGridColumn columnName="???" headerText="some data 0"/>

What I want here is Workbook.Table.Row.Cell.Data containing: 43.21
<mx:DataGridColumn columnName="???" headerText="some data 1"/>

</mx:Array>

</mx:columns>

</mx:DataGrid>

Thanks in advance.

-Douglass





 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to