AD
Administrator
Syncfusion Team
October 11, 2005 12:15 PM UTC
What type of grid are you using? GridControl?
For GridControl, try
grid.RowCount += 1;
grid.CurrentCell.MoveTo(grid.RowCount, 1);
For a GridDataBoundGrid, there is normally a Addnew row already present so all you would have to do is to call grid.CurrentCell.MoveTo(grid.Model.RowCount, 1).