Hi,
I am using 2 RadioButtonGroup in my application.
Code is as below:
<mx:RadioButtonGroup id="statusGroup" labelPlacement="right" selectedValue="
{CreateControlMdl.getInstance().statusField.meaning}"/>
<mx:Repeater id="selectedStatus" dataProvider="{
CreateControlMdl.getInstance().statusLookUp}"
creationComplete="{onCreationComplete()}">
<mx:RadioButton id="radioButtons1" tabIndex="6"
label="{selectedStatus.currentItem.meaning}"
groupName="{statusGroup}"
change="{controlStatusSelectEvent(event);}"
enabled="{CreateControlMdl.getInstance().saveEnabled}" />
</mx:Repeater>
<mx:RadioButtonGroup id="triggerGroup" labelPlacement="right"
selectedValue="{CreateControlMdl.getInstance().triggerField.meaning}"/>
<mx:Repeater id="selectedTrigger" dataProvider="{
CreateControlMdl.getInstance().triggerLookUp}"
creationComplete="{onCreationComplete()}">
<mx:RadioButton id="radioButtons2" tabIndex="15"
label="{selectedTrigger.currentItem.meaning}"
groupName="{triggerGroup}"
change="{controlTriggerSelectEvent(event);}"
enabled="{CreateControlMdl.getInstance().saveEnabled}" />
</mx:Repeater>
I am not able to focus with the keyboard on the second RadioButtonGroup.
Can you please suggest where I am going wrong?
I am aware that to move to differnt radio button values inside a radio
group, we have to use the up and down arrow keys.
And if we press tab, it will move to the next component.
My issue is in moving to second radioButtongroup component.
Please help.
Thanks
Deepti
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---