Re: [flexcoders] Datagrid ItemEditor - multiple data edits?

2007-12-07 Thread Rick Schmitty
Sorry, I normally hate thank you emails but, really, thank you both for the tips :) I appreciate it! On Dec 6, 2007 7:39 AM, Ken Dunnington [EMAIL PROTECTED] wrote: I'm doing exactly that, and it is pretty easy. Here's the LiveDoc link:

Re: [flexcoders] Datagrid ItemEditor - multiple data edits?

2007-12-06 Thread Ken Dunnington
I'm doing exactly that, and it is pretty easy. Here's the LiveDoc link: http://livedocs.adobe.com/flex/201/html/celleditor_073_15.html#247667 and you also might want to read over this bit on making your custom editor respond to keyboard events (enter and escape, for example)

RE: [flexcoders] Datagrid ItemEditor - multiple data edits?

2007-12-05 Thread Tracy Spratt
Sure, this should not be difficult. Have your renderer do its own updating of the dataProvider item, and don't attempt to use the renderIsEditor or other built in item editor functionality. The renderer gets a reference to the entire item, so it can manipulate that data however you want. I