AD
Administrator
Syncfusion Team
July 5, 2006 03:12 PM UTC
Hi Bill,
This can be achieved by using the GetTableDescriptor method. The required visible columns can be added or removed by using the corresponding TableDescriptor. The following is the code snippet
>>>>>>>>>>>>>>>>>>>>>>>>
GridTableDescriptor gd = this.gridGroupingControl1.GetTableDescriptor("MyChildTable");
gd.VisibleColumns.Remove("childID");
>>>>>>>>>>>>>>>>>>>>>>>>
Best regards,
Madhan