I am trying to display information from a datagrid, however the 
datagrid is not at the top level of xml its within a TabNavigator, 
the usual "mydatagrid.currentItem.whatever" displays the data however 
drilling down any further is not working for me.

Any help on this would be much appreciated
example code below:

MXML
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:v="views.*" 
xmlns:mx="http://www.adobe.com/2006/mxml"; layout="absolute" 
creationComplete="basic2.send()">

<mx:HTTPService url="assets/data/Basic3.xml" id="basic2"/>
<mx:Panel width="100%" height="100%" title="Match ID Test" id="pnl1">
<mx:Text text="Attempt to match the ID tags from 2 XML sources and 
diaply data from Basic2"/>
<mx:TabNavigator right="0" bottom="0" top="0" left="0" id="subNav" 
width="100%" height="100%">
<mx:Repeater dataProvider="{basic2.lastResult.Root.Item}" id="rep3">
<mx:Canvas label="{rep3.currentItem.name}">
<mx:VBox width="100%" height="100%" id="v1">
<mx:Repeater dataProvider="{rep3.currentItem.help}" id="blah2">
<mx:Text color="green" id="fred" text="{blah2.currentItem.id}" /> 
<mx:DataGrid selectedIndex="0" id="Grids" 
dataProvider="{blah2.currentItem.Row}" />
<!-- This bit not working <mx:Text color="red" 
text="{Grids.selectedItem.Title}"/> -->
</mx:Repeater>
</mx:VBox>
</mx:Canvas>
</mx:Repeater>
</mx:TabNavigator>
</mx:Panel>
</mx:Application>

XML Basic 3
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<Item>
<name>Tab 1</name>
<ID>01</ID>
<prov>Basic2</prov>
<help id="Tab 1 Working">
<Row>
<Title>Panel 1 Item 1</Title>
<description>My Description</description>
<link>My Link</link>
<pubDate>Mon, 10 Apr 2006 15:48:42 GMT</pubDate>
</Row>
<Row>
<Title>Panel 1 Item 2</Title>
<description>My Description</description>
<link>My Link</link>
<pubDate>Mon, 06 Mar 2006 15:48:42 GMT</pubDate>
</Row>
</help>
</Item>
<Item>
<name>Tab 2</name>
<ID>02</ID>
<prov>Basic2</prov>
<help id="Tab 2 Working">
<Row>
<Title>Panel 2 Item 1</Title>
<description>My Description</description>
<link>My Link</link>
<pubDate>Mon, 24 May 2006 15:48:42 GMT</pubDate>
</Row>
<Row>
<Title>Panel 2 Item 2</Title>
<description>My Description</description>
<link>My Link</link>
<pubDate>Mon, 19 May 2006 15:48:42 GMT</pubDate>
</Row>
</help>
</Item>
<Item>
<name>Tab 3</name>
<ID>03</ID>
<prov>Basic2</prov>
<help id="Tab 3 Working">
<Row>
<Title>Panel 3 Item 1</Title>
<description>My Description</description>
<link>My Link</link>
<pubDate>Mon, 06 Jul 2006 15:48:42 GMT</pubDate>
</Row>
<Row>
<Title>Panel 3 Item 2</Title>
<description>My Description</description>
<link>My Link</link>
<pubDate>Mon, 14 Jun 2006 15:48:42 GMT</pubDate>
</Row>
</help>
</Item>
</Root> 


Reply via email to