RC
Rajadurai C
Syncfusion Team
September 16, 2009 12:01 PM UTC
Hi Allon,
Thanks for your interest in Syncfusion Products.
The gridcontrol is an unbound one. Hence it is not possible to set column name explicitly. This grid just displays what the binded data has. In GridGroupingControl and GridDataBoundGrid, this can be achieved.
this.gridGroupingControl1.TableDescriptor.Columns[0].Name = "CustomName";
this.gridDataBoundGrid1.GridBoundColumns[0].HeaderText = "CustomName";
Regards,
Rajadurai