This question is locked. New answers and comments are not allowed.
| private void RadGridView_RowEditEnded(object sender, GridViewRowEditEndedEventArgs e) |
| { |
| radGridView.BeginInsert(); |
| } |
What I'm trying to do is when the user presses 'Tab' at the end of the row, the row being edited will be submitted and a new one will be created. I'm trying to prevent them from having to press 'Insert' to get a new row and allow quick entry.
The code above adds a black/gray row to the top that doesn't show any columns.
1) What is the correct way to accomplish what I'm after?