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();
}