flex 3使用嵌套中继器

时间:2009-03-16 16:49:52

标签: flex3 nested-repeater

我正在尝试使用嵌套转发器遍历一行arraycollection;

<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> 

我想要做的是让转发器循环遍历currentRow中的所有属性,例如。名称,年龄,地址等。目前我所做的只是调用rp2.currentItem.name,它显式调出属性的名称,然后返回值。

是否有可能而不是明确地将属性命名为仅循环遍历所有属性并使用嵌套转发器为每个属性取消按钮?谢谢

1 个答案:

答案 0 :(得分:0)

对于Repeater的所有对象,您想要一个ArrayCollection吗?使用自定义组件。