Hi,

I have a return from a remoteObject wich is an Array of VO's, the 
VO's have objects in them of which one is another Array of Vo's (the 
main Array is called TeamVO and the TeamVO has a variable inside it 
called players which is an array of playerVO's).

I want to use a repeater to display the Managers and Players so I 
have done this:

<mx:Text text="Managers:"/>
<mx:Repeater id="r" dataProvider="{myPojo.getTeams.result}">
  <mx:Label text="{r.currentItem.teamName}"/>
  <mx:Label text="{r.currentItem.manager}"/>
  <mx:Text text="Coaches:"/>
  <mx:Repeater id="r2" dataProvider="{r.currentItem['players']}">
    <mx:Label text="xxxxxxxxxxxxxxxxx">
  </mx:Repeater>
</mx:Repeater>

What do I put in the "xxxxxxxxxxxx" bit to get the players?
The playerVO has one variable called player and it is a String (his 
name).

Regards,

Iain





------------------------ Yahoo! Groups Sponsor --------------------~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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