Hi @rahul kumar , Welcome to Microsoft Q&A.
As the error says, Uncommitted new row cannot be deleted.
.
Here you can use the AllowUserToAddRows property, set to false.
If you need to add it again, change it to true.
if (currentcolumnposition == 0 && string.IsNullOrEmpty(this.CurrentCell.Value?.ToString()))
{
//this.Rows.RemoveAt(currentrowposition);
this.AllowUserToAddRows = false;
this.SelectNextControl(this, true, true, true, true);
return true;
}
Best Regards,
Jiale
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.