Hello,
I am trying to reorder manually, in code, the index of some data-bound columns.
grid.DataSource = table;
grid.DisplayLayout.Bands[0].Columns["Name"].Index = 0;
But the Index property is ReadOnly.
I think there is another way to do it.
How?
Thanks.
grid.DisplayLayout.Bands[0].Columns["Name"].header.visibleindex = 0;