How do I get the reordered columns? Like Address is at the first column. But I reordered and dragged Name to the first column, the RadGrid1.Columns[0] is still referred to Address. Help
Thanks. But I dn't no what the columns name after being reordered. What I do know is the column index's I need and the current column on that specific index.
The Column's UniqueName will not change on reordering the columns. Since reordering is taking place on the client side I would suggest you to access the GridColumn at the desired position on the client side using the following Javascript code.
JS:
var masterTableView = $find("<%=RadGrid1.ClientID %>").get_masterTableView();
var ColumnName = masterTableView.get_columns()[0].get_uniqueName();