This is a common mistake I'm forgetting every time. so I thought to publish a post.
We need to bind the grid again after selecting the EditRowIndex.
protected void gridSettings_RowEditing(object sender, GridViewEditEventArgs e)
{
gridSettings.EditIndex = e.NewEditIndex;
loadReportGrid();
}
Comments
Thank You very much Avery!