[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, Dave Glasser dglas...@... wrote: --- On Fri, 6/25/10, Amy amyblankens...@... wrote: What is your itemRenderer code? I'm just using the RadioButton, out of the box. I'm setting the itemRenderer property on the DataGridColumn to new

Re: [flexcoders] Re: RadioButton as DataGrid item editor

2010-06-26 Thread Dave Glasser
Thanks! --- On Sat, 6/26/10, Amy amyblankens...@bellsouth.net wrote: From: Amy amyblankens...@bellsouth.net Subject: [flexcoders] Re: RadioButton as DataGrid item editor To: flexcoders@yahoogroups.com Date: Saturday, June 26, 2010, 9:25 AM --- In flexcoders@yahoogroups.com, Dave

[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-25 Thread Amy
--- In flexcoders@yahoogroups.com, Dave Glasser dglas...@... wrote: --- On Thu, 6/24/10, Amy amyblankens...@... wrote: What logic are you using to transfer the value of the RadioButtonGroup to the appropriate properties? None, actually. I would expect the DataGrid to handle that,

Re: [flexcoders] Re: RadioButton as DataGrid item editor

2010-06-25 Thread Dave Glasser
--- On Fri, 6/25/10, Amy amyblankens...@bellsouth.net wrote: What is your itemRenderer code? I'm just using the RadioButton, out of the box. I'm setting the itemRenderer property on the DataGridColumn to new ClassFactory(RadioButton).

[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-24 Thread Amy
--- In flexcoders@yahoogroups.com, Dave Glasser dglas...@... wrote: It seems like it should be simple, but it's a nightmare. I'm using Flex 3.3. The items in my dataProvider have a Boolean property. I want only 1 item to have this property set to true, and all others set to false. So I

Re: [flexcoders] Re: RadioButton as DataGrid item editor

2010-06-24 Thread Dave Glasser
--- On Thu, 6/24/10, Amy amyblankens...@bellsouth.net wrote: What logic are you using to transfer the value of the RadioButtonGroup to the appropriate properties? None, actually. I would expect the DataGrid to handle that, since it is creating the RadioButtonGroup and my code would not have