How do I get a reference to DataView/DataTable in TableControlCurrentCellEditingComplete

How do I get a reference to DataView/DataTable in TableControlCurrentCellEditingComplete?

grid is bound to a datatable like
gridGroupingControl.DataSource = ds.Tables[1];

1 Reply

AD Administrator Syncfusion Team September 6, 2006 10:44 AM UTC

Hi James,

You can access the Related DataView for TableControl using Table.SourceList property. Please find the code snippet below

DataView dv = e.TableControl.Table.SourceList as DataView

Thanks,
Haneef

Loader.
Up arrow icon