I have a Gridview with autogenerated Column = "true" Now I want to change the postion of gridview column in the gridview's OnRowCreated event.
I use this code
TableCell cell = e.Row.Cells[1];
TableCell cell1 = e.Row.Cells[0];
e.Row.Cells.RemoveAt(1);
e.Row.Cells.RemoveAt(0);
e.Row.Cells.Add(cell1);
e.Row.Cells.Add(cell);
It works fine it moves column 0 and 1 to last positions of grid view
Now I want to move 3rd column of gridview to the first position, so I use
TableCell cell2 = e.Row.Cells[3];
e.Row.Cells.RemoveAt(3);
e.Row.Cells.AddAt(0, cell2);
but it's not working....
