views:

18

answers:

1

I have an editable datagrid, whenever I make a change it automatically gets saved. How can I disable this? So the changes gets saved only when I click on an external save button.

+2  A: 

Cancel the itemEditEnd event by calling event.preventDefault() in the event listener

http://livedocs.adobe.com/flex/3/langref/mx/controls/DataGrid.html#event:itemEditEnd

www.Flextras.com