The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Since all child tables on the same level of hieararchy will have the same set of columns, is there a way to make changes (i.e. width, visibility, etc) to the entire set of child tables on the same hieararchy level? I know you can access child tables from the record parents but is there a more generic way of getting to all of them? I''m thinking of something similar to the concept of bands in the Infragistics grid world. Thanks.
- Aleem
ADAdministrator Syncfusion Team June 30, 2004 03:41 PM UTC
I should have been more specific, I was referring to the GridGroupingControl.
ADAdministrator Syncfusion Team July 1, 2004 12:55 PM UTC
Hi Aleem,
yes you can make changes both in the designer and through code.
If you open the HierarchyView example in the designer you can change the options for the child table under the TableDescriptors category in the PropertyGrid. If you expand the CustomerOrders property you can then add/remove columns or change appearance setting for that relation. These changes will be serialized into code.
To make changes through code for the child relations, you need to access the RelationDescriptor.ChildTableDescriptor.
GridTableDescriptor td = groupingGrid.TableDescriptor.Relations[0].ChildTableDescriptor;
td.Appearance.AnyCell.BackColor = Color.Blue;
Stefan