LS
Lingaraj S
Syncfusion Team
April 7, 2009 06:30 PM UTC
Hi Prabakran,
Thank you for your interest in Syncfusion product.
The gridgroupingcontrol when you move to the the next record, the records are updated. If you want to update the record in current cell lost focus use the RecordValueChanged event to update the GridGroupingControl.
Please refer the code below:
this.gridGroupingControl1.Table.RecordValueChanged+=new RecordValueChangedEventHandler(Table_RecordValueChanged);
void Table_RecordValueChanged(object sender, RecordValueChangedEventArgs e)
{
gridGroupingControl1.Table.EndEdit();
}
Please let me know if this helps.
Regards,
Lingaraj S