Cell value changed

Is there an event to signal when a cell's value has changed in a GridGroupingControl? I have tried Table.RecordValueChanged and TableModel.SourceListRecordChanged, neither of which work. I am using an IBindingList as the Datasource and when I change the value of an item in the list, neither of these events are fired. Thanks.

1 Reply

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

Loader.
Up arrow icon