Your solution worked perfect.
Thank you,
Bidin
>Try handling the QueryNextCurrentCell event, and explicitly setting it there.
>
>private void gridDataBoundGrid1_QueryNextCurrentCellPosition(object sender, GridQueryNextCurrentCellPositionEventArgs e)
>{
> GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell;
> if(cc.RowIndex == this.gridDataBoundGrid1.TopRowIndex && e.Direction == GridDirectionType.Up)
> {
> cc.MoveTo(1, e.ColIndex);
> e.Handled = true;
> e.Result = true;
> }
>}
>