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
close icon

RecordDeleting and Record Added event

Hi together,

I am currently trying your GGC. I have found there is an event which is fired while deleting a record from the grid. But I didn''t find any appropriate RecordAdding event? Which event is fired when adding a new record?

1 Reply

AD Administrator Syncfusion Team August 28, 2006 10:53 AM UTC

Hi,

The SourceListRecordChanged event will get triggered whenever a new record is added to the GGC.

this.gridGroupingControl1.Table.SourceListRecordChanged += new RecordChangedEventHandler(Table_SourceListRecordChanged);

private void Table_SourceListRecordChanged(object sender, RecordChangedEventArgs e)
{
if(e.Action == RecordChangedType.Added)
{
Console.WriteLine("Record Added.....");
}
}

Regards,
Rajagopal

Loader.
Live Chat Icon For mobile
Up arrow icon