Vyasdev Meledath
Vyasdev Meledath

Reputation: 9016

Change devexpress grid control column header caption

Hai all,

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

Upvotes: 3

Views: 19082

Answers (1)

DevExpress Team
DevExpress Team

Reputation: 11376

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

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

Upvotes: 5

Related Questions