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

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