vote up 0 vote down star

Hi im trying to loop through a row of an arraycollection using nested repeater;

    <mx:Repeater id="rp1" dataProvider="{arrayCollection}">
       <mx:Repeater id="rp2" dataProvider="{rp1.currentItem}">
	<mx:Button height="49" width="50" label="{rp2.currentItem.name}" 
                />	
     </mx:Repeater>
</mx:Repeater>

What im trying to do is make the repeater loop through all the attributes in the currentRow, eg. name,age, address etc. At the moment all i do is call rp2.currentItem.name which explicitly calls out the name of the attribute and then the value is returned.

Is it possible instead of explicity naming the attribute to just loop through them all and dispplay button for each using the nested repeater?thanks

flag

1 Answer

vote up 0 vote down

Do you want a single Repeater for all objects of your ArrayCollection? Use a custom component.

link|flag
i dont necessarily need to use a repeater, my problem is that i dont know how else i can take an arraycollection and then loop through the contents of each row of the arraycollection whcih contain serveral values. A datagrid is not suitable for my needs either – ccdugga Mar 16 at 17:01
As I suggested earlier, create a custom component. There are several types of them -- MXML, pure AS based etc. Take a look at the documentation. – dirkgently Mar 16 at 17:28

Your Answer

Get an OpenID
or

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