ColumnHeaderRowHeight for ChildTable

I have a GridGroupingCOntrol wherein I setup datarelation for displaying my data as parent-child. I want to see column names for the parent but I don't want to see any column names for the child. I see that I can handle parent's column names using:
grid.TableOptions.ColumnHeaderRowHeight = 0;
whereas, I don't see any similar property for Child tables. How can I hide the child table's column names?

3 Replies

PN Phani N June 1, 2009 12:45 PM UTC

Anyone plz?


RC Rajadurai C Syncfusion Team June 1, 2009 01:04 PM UTC

Hi Phani,

Thanks for your interest in Syncfusion Products.

There is a property called ShowColumnHeaders that allows you to show/hide the column headers. Please try the following code to hide the column headers in nested tables.

this.grid.NestedTableGroupOptions.ShowColumnHeaders = false;


Regards,
Rajadurai


PN Phani N June 2, 2009 05:48 PM UTC

thanks rajadurai. it works great.

Loader.
Up arrow icon