Event in GridGroupingControl

Hi, I want to update a column value to the database when the user modifies and moves to the next row. On which event I can do this..? Thanks, Prathima

2 Replies

AD Administrator Syncfusion Team June 9, 2005 09:34 AM UTC

One way you can catch this is to use the grid.SourceListListChanged event. Check for e.ListChangedType == ListChangedType.ItemChanged.
private void gridGroupingControl1_SourceListListChanged(object sender, TableListChangedEventArgs e)
{
	Console.WriteLine(e.ListChangedType);
}


PV Prathima Venkobachar June 9, 2005 10:34 AM UTC

Thanks a lot.It works fine. Thx, Prathima

Loader.
Up arrow icon