AD
Administrator
Syncfusion Team
August 14, 2006 06:01 AM UTC
Hi Scott,
You can access the Related DataTable for TableDescriptor using GridTable.SourceList property. Please find the code snippet below
GridTableDescriptor gtd = this.gridGroupingControl1.GetTableDescriptor("TableName") as GridTableDescriptor;
GridTable gt = this.gridGroupingControl1.GetTable(gtd.Name);
DataView dv = gt.SourceList as DataView;
Console.WriteLine( "Table Name : " + dv.Table.TableName );
Let me know if this helps.
Best Regards,
Haneef