Commit Data immediately in GDBG

Hi All, Is there any setting in GDBG that allows me to commit every change immediately? TIA

1 Reply

AD Administrator Syncfusion Team February 13, 2004 05:29 AM UTC

You can handle the CurrentCellChanged event and call ConfirmChanges on the current cell. private void gridDataBoundGrid1_CurrentCellChanged(object sender, System.EventArgs e) { this.gridDataBoundGrid1.CurrentCell.ConfirmChanges(); }

Loader.
Up arrow icon