New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.private void gridDataBoundGrid1_QueryNextCurrentCellPosition(object sender, GridQueryNextCurrentCellPositionEventArgs e) { GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell; if(cc.Renderer.ControlText == "1" && e.ColIndex == this.gridDataBoundGrid1.Model.ColCount + 1 && e.RowIndex == this.gridDataBoundGrid1.Model.RowCount ) { //move it back a column cc.MoveTo(e.RowIndex, e.ColIndex - 2); e.Handled = true; e.Result = false; } }