ST
stanleyj
Syncfusion Team
January 13, 2006 05:31 PM UTC
Hi Chuck,
CurrentRecordContextChange would be the right event to get notified for the modifications.
private void gridGroupingControl1_CurrentRecordContextChange(object sender, Syncfusion.Grouping.CurrentRecordContextChangeEventArgs e)
{
if(e.Action == CurrentRecordAction.EndEditCalled)
{
Console.WriteLine("Modified");
}
}
Let me know if you have any more questions.
Best regards,
Stanley