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

Can I access the DirectSaveCellInfo property on GridGroupingControl?

I know there is a Binder.DirectSaveCellInfo for GridDataBoundGrid. How about GridGroupingControl? Does it have the same property or an equivalent?
Thanks very much.
FS

1 Reply

AD Administrator Syncfusion Team October 12, 2006 08:39 PM UTC

Hi,

For a GridGroupingControl, you can handle the RecordValueChanged event of the grid and call e.Record.EndEdit() there.

this.gridGroupingControl1.RecordValueChanged += new RecordValueChangedEventHandler(gridGroupingControl1_RecordValueChanged);

private void gridGroupingControl1_RecordValueChanged(object sender, RecordValueChangedEventArgs e)
{
e.Record.EndEdit();
}

Thanks for using Syncfusion Products.
Regards,
Rajagopal

Loader.
Live Chat Icon For mobile
Up arrow icon