LS
Lingaraj S
Syncfusion Team
August 18, 2009 03:01 PM UTC
Hi,
Thank you for using Syncfusion products.
If you want to update the table, when the Record value has been changed in GridGroupingControl, then please try using Table.EndEdit mentioned in TableControlCurrentCellEditingComplete event to achieve this functionality.
Refer the code below:
this.gridGroupingControl1.TableControlCurrentCellEditingComplete += new GridTableControlEventHandler(gridGroupingControl1_TableControlCurrentCellEditingComplete);
void gridGroupingControl1_TableControlCurrentCellEditingComplete(object sender, GridTableControlEventArgs e)
{
gridGroupingControl1.Table.EndEdit();
}
Please let me know if you have any queries.
Regards,
Lingaraj S.