GridGroupingControl

Hi,

I need to make the Grid header invisible.
How do I do this?

Thanks,
Ronnie

GridHeader1.zip

3 Replies

AD Administrator Syncfusion Team February 19, 2007 06:20 PM UTC

Hi Ronnie,

Try setting the TableOptions.ShowRowHeader property to hide/show the column(rowheader) of the Grid. Here is a code snippet

this.gridGroupingControl1.TableOptions.ShowRowHeader = false;

Best Regards,
Haneef


RK Ronnie Kleinfeld February 19, 2007 08:29 PM UTC

Hi,

This doesn't work.
Maybe something else?

Thanks,
Ronnie


>Hi Ronnie,

Try setting the TableOptions.ShowRowHeader property to hide/show the column(rowheader) of the Grid. Here is a code snippet

this.gridGroupingControl1.TableOptions.ShowRowHeader = false;

Best Regards,
Haneef


AD Administrator Syncfusion Team February 19, 2007 09:01 PM UTC

Hi Ronnie,

You can turn ON/OFF the column header by using the ShowColumnHeaders property.

//For top level table...(main table);
this.gridGroupingControl1.TopLevelGroupOptions.ShowColumnHeaders = true;

//For group of nested table...
gridGroupingControl1.NestedTableGroupOptions.ShowColumnHeaders = false; //Hide the column header

//For all inner groups column header.
this.groupingGrid1.ChildGroupOptions.ShowColumnHeaders = false;

Also refer to Essential Grid Evalution center for more details.
http://www.syncfusion.com/support/evalcenter/default.aspx?cNode=5

Best regards,
Haneef

Loader.
Up arrow icon