tags:

views:

14

answers:

1

I have an editable datagrid, and whatever change I made it gets automatically saved.

Is there a possibility to disable this automatic save, and only save it when I click a button. And is it possible that at the button click I save data even if I have modified it in multiple rows, so the complete changes get saved?

+2  A: 

I guess "automatic save" is open to interpretation. An itemEditor updates its data object when the editor is destroyed; which usually happens when the editor loses focus.

If you cancel the itemEditEnd event; the changes will not be saved.

www.Flextras.com
Thank you, I have done that and then on my save button added this:myService.serviceControl.autoCommit = true; and it works fine.
Adnan