Hi Ha Nguyen,
Thank you for your interest in Syncfusion Products.
To refresh the data in the list after the list has changed, you could make use of EndInit() method in "Model.CellsChanged" event. The following code illustrates the same.
this.gridDataBoundGrid1.Model.CellsChanged += new Syncfusion.Windows.Forms.Grid.GridCellsChangedEventHandler(Model_CellsChanged);
void Model_CellsChanged(object sender, Syncfusion.Windows.Forms.Grid.GridCellsChangedEventArgs e)
{
this.gridDataBoundGrid1.InvalidateRange(GridRangeInfo.Row(this.gridDataBoundGrid1.CurrentCell.RowIndex));
this.gridDataBoundGrid1.EndInit();
}
Here is the sample for your reference.
http://www.syncfusion.com/uploads/redirect.aspx?&team=support&file=UpdationProblem1992932942.zipPlease let us know if this helps.
Regards,
Yuvaraja V.