For a GridGroupingControl with multiple, nested tables (parent, child, grandchild, etc.), is it possible to show the Caption row for one nested table (e.g., child) but hide it for another (say, grandchild)?
--Van Baker
AD
Administrator
Syncfusion Team
September 1, 2005 05:21 PM UTC
You can set properties on the tabledescriptor for each level.
this.parentTD = this.gridGroupingControl1.TableDescriptor;
this.childTD = parentTD.Relations["ParentToChild"].ChildTableDescriptor;
this.gridChildTD = childTD.Relations["ChildToGrandChild"].ChildTableDescriptor;
this.childTD.TopLevelGroupOptions.ShowCaption = true;
this.gridChildTD.TopLevelGroupOptions.ShowCaption = false;
VB
vbaker
September 1, 2005 06:59 PM UTC
Thanks.
--Van Baker