13

Hai all,

I want to know how to disable row header in Devexpress xtragrid (grid control ) . In normal we are disabling the property of DataGrid by row header visbile into false.But how to disable in Devexpress.

Please Help

EDIT

enter image description here

Vyasdev Meledath
  • 8,926
  • 20
  • 48
  • 68

2 Answers2

29

At last i found the answer !!!

set the GridView.OptionsView.ShowIndicator property to False.

Vyasdev Meledath
  • 8,926
  • 20
  • 48
  • 68
0

I am not sure that this is what you want to achieve, but to hide a column, you should set its Visible property to false. I.e.

GridView1.Columns["SomeFieldName"].Visible = false;

If this does not help, please explain the needed functionality in greater details and I will update my answer....

DevExpress Team
  • 11,338
  • 2
  • 24
  • 23