We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

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.
Live Chat Icon For mobile
Up arrow icon