JJ
Jisha Joy
Syncfusion Team
September 17, 2010 07:21 AM UTC
Hi David,
In the GridGroupingControl, the cells are saved recordwise. That is, the cells do not reflect any changes to the datasource unless, the cells move to next record or the record is EndEdited. For manually EndEditing the record when the cells is edited by handling the RecordValueChanged event. The code snippet is as follows.
void ggc_RecordValueChanged(object sender, RecordValueChangedEventArgs e)
{
e.Record.EndEdit();
}
Regards,
Jisha