How do i: Change the header text in a datagrid that is databound?

  • Thread starter Thread starter John Blair
  • Start date Start date
J

John Blair

Hi,

I have tried aliasing columns in the SELECT statement - they get ignored.
I have tried accessing the .columns(0).headertext - but as the grid is
databound that column collection does not exist.

Any help appreciated. Thanks.
 
The only way is to handle ItemCreated event. Then you can catch headers as
they get created and change the text.

Eliyahu
 
Back
Top