AD
Administrator
Syncfusion Team
June 19, 2006 06:06 PM UTC
Hi Borja,
Try calling the gridDataBoundGrid1.CurrentCell.EndEdit() before calling the Binder.EndEdit() to see if that helps.
private void gridDataBoundGrid1_CellButtonClicked(object sender, GridCellButtonClickedEventArgs e)
{
this.gridDataBoundGrid1.CurrentCell.EndEdit();
this.gridDataBoundGrid1.Binder.EndEdit();
}
Regards,
Calvin.