Articles in this section
Category / Section

How do I change the column header text in GridDataBoundGrid?

1 min read

 

The GridDataBoundGrid defaults to using the property name of the content of the columns as the header text. For a DataTable, this is the DataColumn.ColumnName property.

To specify a header other than this default, you have to set the GridBoundColumn.HeaderText property for the column. If you have explicitly added GridBoundColumns to the GridDataBouondGrid.GridBoundColumns collection, then you would use the GridBoundColumns in that collection. If you did not add GridBoundColumns, then you would use the GridBoundColumns that are autogenerated when you set the DataSource to the grid, GridDataBoundGrid.Binder.InternalColumns.

C#

//set the Header Text of Column 1

this.gridDataBoundGrid1.Binder.InternalColumns[0].HeaderText="New ColumnName";

VB

'set the Header Text of Column 1

Me.gridDataBoundGrid1.Binder.InternalColumns(0).HeaderText="New ColumnName"

Sample:

http://help.syncfusion.com/support/samples/KB/grid.windows/GDBGHeaderText/HeaderText.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied