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.
Up arrow icon