I need to have the insert row visible at all times, so I do something like the following. The problem is after the user tabs through adding data to the row and hits the insert button, when the insert row gets added again during Pre-Render as shown below, I want to be able to put the user focus back into the first cell of the insert row. Note: I use InsertCommand to actually persist the data into the object collection. Please help.
}
protected
void RadGrid1_PreRender(object sender, System.EventArgs e)
{
if (!RadGrid1.MasterTableView.IsItemInserted)
{
RadGrid1.MasterTableView.IsItemInserted =
true;
RadGrid1.Rebind();
}
}