I write the following code to hide the particular column:
(_view as BandedGridView).Columns[j].VisibleIndex = -1;
And this worked
However, I want to change the order of the column by following code:
(_view as BandedGridView).Columns[j].VisibleIndex = i;
But this does not worked
Ask for help, thanks
According to documentation, assigning value to
VisibleIndex
property greater than -1 attempting to move the column has no effect:Assume that you have a GridBand in designer:
You can use
MoveTo
method to change column position instead:NB: The
[BandedGridColumn]
refers toDevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn
object names declared in the designer.Similar issue:
Strange Behavior when setting VisibleIndex in BandedGridView after user customization