ya I know tht in case of radio buttons the navigation is through arrow keys
bt the problem is that the focus is not coming on the radio button group.We
can navigate with arrow keys once the focus is on radio button group.
I had used focusEnabled,setFocus(),tabEnabled and also giving tabIndex() bt
still the focus is not coming on the that components.

On Fri, Oct 1, 2010 at 10:33 AM, kannan r <[email protected]> wrote:

> Yes, tab index will not go through each radio button. The tab index will
> only goto the first radio button in a radio button group. You can use your
> arrow keys to step through each radio buttons. I have faced these problem in
> my last project. So I wrote my own .as to make a work around.
>
> I can give a basic idea. Listen to keyboard event on the radio buttons.
> Then on the event handler check for down arrow press and up arrow key press.
> If down arrow is pressed then set the focus to the next radio button (also
> make the selected property to true if required). lly if up arrow is pressed
> move the focus using setFocus to the prev radio button.
>
> Hope this helps. If you insist I can search and put some source code here.
>
> Thanks & Regards,
> kannan. R
>
>  --
> 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]<flex_india%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/flex_india?hl=en.
>



-- 
With Regards
Rahul Makani

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

Reply via email to