Change devexpress grid control column header caption

Vyasdev Meledath picture Vyasdev Meledath · Sep 20, 2010 · Viewed 18.3k times · Source

Hai all,

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

Answer

DevExpress Team picture DevExpress Team · Sep 20, 2010

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

ASPxGridView1.Columns[0].Caption = "Some Value";