repeater
Submitted by jrowny on Wed, 05/26/2010 - 11:08
I previously posted how I solved the problem of RadioButtonGroups inside repeaters, you can see that post here. Unfortunately, today, I discovered that radio button groups are a scam. You don't need them at all!? Why, you ask? If you just set the "groupName" property, they are automatically created.
<mx:Repeater id="someRepeater">
<mx:HBox>
<mx:RadioButton id="Yes" groupName="{someRepeater.currentIndex}"/>