AD
Administrator
Syncfusion Team
May 26, 2004 09:03 PM UTC
You can hide 2 of the 3 header rows (the last two), and then set the HeaderText for the cells in the first row.
this.gridDataBoundGrid1.Model.Rows.Hidden[1] = true;
this.gridDataBoundGrid1.Model.Rows.Hidden[2] = true;
this.gridDataBoundGrid1.GridBoundColumns["CustomerID"].HeaderText = "Some Special Text";