AD
Administrator
Syncfusion Team
November 21, 2006 05:25 AM UTC
Hi Adam,
You can access the GridDropDownGridListControlCellRenderer and use the Renderer.ListControlPart.ShowColumnHeader property to customize the column header in a GridListControl. Here is a code snippet.
GridDropDownGridListControlCellRenderer cr = this.gridDataBoundGrid1.CellRenderers["GridListControl"] as GridDropDownGridListControlCellRenderer;
cr.ListControlPart.ShowColumnHeader = false;
Best Regards,
Haneef
AD
Administrator
Syncfusion Team
November 21, 2006 01:54 PM UTC
thks..
>Hi Adam,
You can access the GridDropDownGridListControlCellRenderer and use the Renderer.ListControlPart.ShowColumnHeader property to customize the column header in a GridListControl. Here is a code snippet.
GridDropDownGridListControlCellRenderer cr = this.gridDataBoundGrid1.CellRenderers["GridListControl"] as GridDropDownGridListControlCellRenderer;
cr.ListControlPart.ShowColumnHeader = false;
Best Regards,
Haneef