RE: [flexcoders] checkCellRender Validation

2006-11-07 Thread Stephen Gilson
[mailto:[EMAIL PROTECTED] On Behalf Of Valy SivecSent: Tuesday, November 07, 2006 1:18 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] checkCellRender Validation Hello flexcoders,I've spent the last few hours trying to validate a cell on a editable datagrid without any luck. Do you

Re: [flexcoders] checkCellRender Validation

2006-11-07 Thread Valy Sivec
Gilson [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Tuesday, November 7, 2006 1:24:16 PMSubject: RE: [flexcoders] checkCellRender Validation Hi Valy, In Flex 2, there was an issue with the reason property of the DataGridEvent and ListEvent class not being set

RE: [flexcoders] checkCellRender Validation

2006-11-07 Thread Stephen Gilson
: flexcoders@yahoogroups.comSubject: Re: [flexcoders] checkCellRender Validation Hi Stephen,Sorry, didn't realize that the page was part of the frame... Here is the document I was referencing: http://livedocs.macromedia.com/flex/2/docs/0867.htmlThe ! tasks I have seems pretty basic

Re: [flexcoders] checkCellRender Validation

2006-11-07 Thread Harish Sivaramakrishnan
]ups.comSubject: Re: [flexcoders] checkCellRender Validation Hi Stephen, Sorry, didn't realize that the page was part of the frame... Here is the document I was referencing: http://livedocs.macromedia.com/flex/2/docs/0867.html The ! tasks I have seems pretty basic, have a grid with multiple

RE: [flexcoders] checkCellRender Validation

2006-11-06 Thread Valy Sivec
Hello flexcoders,I've spent the last few hours trying to validate a cell on a editable datagrid without any luck. Do you have any example?. The example from the adobe docs doesn't work :(. It seems that preventDefault() always works for tab but not for the

RE: [flexcoders] checkCellRender Validation

2006-11-06 Thread Iko Knyphausen
:18 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] checkCellRender Validation Hello flexcoders, I've spent the last few hours trying to validate a cell on a editable datagrid without any luck. Do you have any example?. The example from the adobe docs doesn't work

RE: [flexcoders] checkCellRender Validation

2006-11-06 Thread Valy Sivec
... are you validating upon the itemEditEnd event on the DataGrid or are you validating in an itemEditor?From: [EMAIL PROTECTED]ups.com [mailto:[EMAIL PROTECTED]ups.com] On Behalf Of Valy Sivec Sent: Monday, November 06, 2006 10:18 PM To: [EMAIL PROTECTED]ups.com Subject: RE: [flexcoders

RE: [flexcoders] checkCellRender Validation

2005-12-08 Thread Matt Chotin
In your CheckBoxCellRenderer class you could add a static variable called anySelected. Then you could bind the enabled property of the CheckBox in your renderer to !anySelected || myCB.selected and then in the click handler of your CheckBox set anySelected to myCB.selected. So heres a