[flexcoders] Re: Weired Focus Change behaviour on tab pressing

2009-03-17 Thread valdhor
Binding passes a reference to the object that you are binding. groupName requires a string. You were passing a reference to the radioButton group object to the groupName property. Of course, Flex saw that and invoked the toString() method of the radioButton group object to pass a string to the

[flexcoders] Re: Weired Focus Change behaviour on tab pressing

2009-03-16 Thread valdhor
You are almost done. Just remove the bindings from your groupNames... mx:RadioButton id=radioButtonDHCP label=DHCP groupName=networkSettingsGroup styleName=textMedium/ mx:RadioButton label=Static groupName=networkSettingsGroup styleName=textMedium/ --- In flexcoders@yahoogroups.com, geeky

Re: [flexcoders] Re: Weired Focus Change behaviour on tab pressing

2009-03-16 Thread geeky developer
Awesome, That works perfectly Thanks a lot Alex and valdhor for your help, Now everything is working fine with the binding removed, I am just wondering why binding can screw the focus issues for the tab pressing :-) On Mon, Mar 16, 2009 at 5:44 AM, valdhor valdhorli...@embarqmail.comwrote: