Hello –
I have a grid with 2 bitmap columns that the user can use to move the row up and down within the grid. I know that gridcontrol.MoveCurrentRow(Direction) should accomplish this but I cannot get it to work.
I have made sure that the other rows, etc. have CanBeCurrent set to true. Is there anything I am missing? here is my code
private void UpRow_Click(object sender, EventArgs e)
{
this.MyGrid.MoveCurrentRow(Xceed.Grid.VerticalDirection.Up);
}
I have attached this to all the “up” cells and know that this method is being called – the rows just won’t move.
Thanks,
Eric
Imported from legacy forums. Posted by Eric (had 1957 views)