Hello!
How to define (change) columns order in runtime?
Thank you.
Hi,
You can use the Columns collection to re-order the columns.
ColumnBase col = xamWebGrid1.Columns["myCol"];
xamWebGrid1.Columns.Remove(col);
xamWebGrid1.Columns.Insert(0, col);
Hope this helps.
-SteveZ