Sure.

 

<mx:Repeater id=”outerRepeater” dataProvider=”{myArray}”>

  <mx:Repeater id=”innerRepeater dataProvider=”{outerRepeater.currentItem}”>

    …

  </mx:Repeater>

</mx:Repeater>

 

You can also change the dataProvider of the repeater no problem, but note that it will replace the items that had been created before, not append (which I’m thinking might be what you were looking for based on the question).

 

Matt

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 10, 2005 11:54 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Linking a repeater to an array of arrays?

 

Is this possible to do or is it possible to change the dataprovider property of a repeater?

Reply via email to