RE: [flexcoders] Re: What event is data that can change in Editable DataGrid and how to updata its!

2005-12-23 Thread Tracy Spratt
Sent: Friday, December 23, 2005 4:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: What event is data that can change in Editable DataGrid and how to updata its! if your trying to edit a cell directly (by clicking on the cell) on your datagrid, use the cellEdit event. this gets

[flexcoders] Re: What event is data that can change in Editable DataGrid and how to updata its!

2005-12-23 Thread bhaq1972
if your trying to edit a cell directly (by clicking on the cell) on your datagrid, use the cellEdit event. this gets triggered if you make changes in an editable datagrid eg import mx.events.DataGridEvent; function doCellEdit(event:DataGridEvent):Void { //do something. } --- In flexcoder