[flexcoders] checkCellRenderer class

2006-06-14 Thread Chaitu Vadlapatla
Hi, Is there a check Cell renderer class for FLEX. I am trying to insert check boxes into one of my columns in the datagrid and control the rows depending on whether the checkboxes have been selected or not. Thanks Chaitu __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] checkCellRenderer class

2006-06-14 Thread Jeremy Lu
creating cell renderer (it's called item renderer now) in Flex 2 is a snap, search the manual for item renderer.most of the time you would just need something like this:mx:List itemRenderer= mx.controls.CheckBox dataProvider=[1,2,3]/see if it works.Jeremy.On 6/15/06, Chaitu Vadlapatla [EMAIL

RE: [flexcoders] CheckCellRenderer

2005-12-30 Thread Tracy Spratt
Yeah, thanks Jesse. Use editField(), not the method I made up. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Thursday, December 29, 2005 8:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] CheckCellRenderer

RE: [flexcoders] CheckCellRenderer

2005-12-30 Thread Tracy Spratt
instead of re-assigning the dataProvider, but I have not tried this. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rob Dickey Sent: Thursday, December 29, 2005 11:13 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] CheckCellRenderer

Re: [flexcoders] CheckCellRenderer

2005-12-30 Thread JesterXL
You were thinking of setItemAt from Flex 2. No worries, you're just ahead of the curve. - Original Message - From: Tracy Spratt [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, December 30, 2005 1:21 PM Subject: RE: [flexcoders] CheckCellRenderer Yeah, thanks Jesse. Use

Re: [flexcoders] CheckCellRenderer

2005-12-30 Thread JesterXL
+ dispatch modelChanged() is faster than editField on thousands of records. Don't have benchmarks, though. - Original Message - From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Friday, December 30, 2005 1:24 PM Subject: RE: [flexcoders] CheckCellRenderer The difference is that

RE: [flexcoders] CheckCellRenderer

2005-12-30 Thread Tracy Spratt
Regards, Rob From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL Sent: Thursday, December 29, 2005 5:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] CheckCellRenderer Example: dataGrid.dataProvider[i].cbSelect = newState

Re: [flexcoders] CheckCellRenderer

2005-12-30 Thread JesterXL
From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Friday, December 30, 2005 1:39 PM Subject: RE: [flexcoders] CheckCellRenderer Ah, cool. So all that Flash frame stuff might actually be good to know about! From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogr

[flexcoders] CheckCellRenderer

2005-12-29 Thread rb_dickey
Hi, I'm trying to do a simple loop through a datagrid to set a column that's using the CheckCellRenderer to be checked or unchecked but the following code does not work, well sort of. What happens is that if I mouseover each row, viola, the checks in the checkbox appear or disappear

RE: [flexcoders] CheckCellRenderer

2005-12-29 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: [flexcoders] CheckCellRenderer Hi, I'm trying to do a simple loop through a datagrid to set a column that's using the CheckCellRenderer to be checked or unchecked but the following code does not work, well sort of. What happens is that if I mouseover each row

Re: [flexcoders] CheckCellRenderer

2005-12-29 Thread JesterXL
PM To: flexcoders@yahoogroups.com Subject: [flexcoders] CheckCellRenderer Hi, I'm trying to do a simple loop through a datagrid to set a column that's using the CheckCellRenderer to be checked or unchecked but the following code does not work, well sort of. What happens is that if I mouseover

RE: [flexcoders] CheckCellRenderer

2005-12-29 Thread Rob Dickey
Regards, Rob From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of JesterXL Sent: Thursday, December 29, 2005 5:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] CheckCellRenderer Example: dataGrid.dataProvider[i].cbSelect = newState; becomes

[flexcoders] CheckCellRenderer

2005-07-07 Thread terry_hrtn
I'm using the CheckCellRenderer from the samples on a datagrid that is inside of a title window. The problem I'm having is when I check the top item the item in the grid that is not being displayed at the moment is also checked. Any ideas? -- Flexcoders Mailing List FAQ:

RE: [flexcoders] CheckCellRenderer

2005-07-07 Thread Matt Chotin
Sent: Thursday, July 07, 2005 2:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] CheckCellRenderer I'm using the CheckCellRenderer from the samples on a datagrid that is inside of a title window. The problem I'm having is when I check the top item the item in the grid