AD
Administrator
Syncfusion Team
October 16, 2006 04:54 AM UTC
Hi Stephen,
Try to handle the grid.SourceListListChanged event to detect the underlying source list changes in a grid and let me know it this works.
private void grid_SourceListListChanged(object sender, TableListChangedEventArgs e)
{
//you can check the e.ListChangedType for variety of types.
if(e.ListChangedType == ListChangedType.ItemChanged)
{
Console.WriteLine("Item Changes in the source list");
}
}
Best Regards,
Haneef