<mx:Label text="Crazy about Flex"/>
You are not logged in.
Can I get some suggestions as to why this is not working:
<mx:RadioButtonGroup id="primaryAliasGroup" itemClick="handlePrimaryAlias(event);" />
<mx:List dataProvider="{currentList.aliases}" id="aliasesList" rowCount="5"
width="100%" >
<mx:itemRenderer>
<mx:Component>
<mx:HBox height="30">
<mx:RadioButton
groupName="{outerDocument.primaryAliasGroup}"
id="primaryAliasID"
label="{data}"
width="100%"
/>
</mx:HBox>
</mx:Component>
</mx:itemRenderer>
</mx:List>
When I trace for the numRadioButtons in primaryAliasGroup, the result is 0.
Any direction is appreciated and thanks in advance.
Offline