Greetings,
After adding a new row, how can I place the cursor in the first column in the new row position? I have tried the following but it doesn't work:
After adding a new row, how can I place the cursor in the first column in the new row position? I have tried the following but it doesn't work:
private void gv_UserAddedRow(object sender, GridViewRowEventArgs e)
{
gv.CurrentRow = gv.MasterView.TableAddNewRow;
gv.CurrentColumn = gv.Columns[0];
gv.BeginEdit();
}