Link to home
Start Free TrialLog in
Avatar of sbornstein2
sbornstein2

asked on

How can I hide a grid column header?

I have a column that is using a buttin in a gridview.  The grid has a CSS Class on it and the header turns blue.  How can I make the one column not be blue or hidden?
Avatar of Pra4444
Pra4444
Flag of United States of America image

If you know what column it is, its easy to hide a gridvew column by the following statement...

MyGridView.Columns[0].Visible = false;
Avatar of sbornstein2
sbornstein2

ASKER

i dont want to hide the column just the header somehow.  I can set it to white but I would rather see if I can somehow just make the header invisible
ASKER CERTIFIED SOLUTION
Avatar of Pra4444
Pra4444
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial