views:

178

answers:

1

Hai all,

How to change devexpress gridconrol column header caption using c#. please help

+1  A: 

Hi,

This can be done using the following code in the Page_Load event:

ASPxGridView1.Columns[0].Caption = "Some Value";
DevExpress Team
sorry,am using win forms xtragrid control.For that this code enough...?
Vyas
I wrote this code for the ASPxGridView, as ASP.NET grid control. If you are using the XtraGrid, the code should be:gridView1.Columns[0].Caption = "Some Caption";
DevExpress Team