Datagrid Inline Edit OnClick

Hello everyone,

I'd like to mention that I'm quite new to Blazor and Radzen too.
I've been following the example of the InLine Edit for the datagrids.

I've got a very specific way i like to edit datagrids and that is:
Line(row) goes into edit mode on selection, not by buttons on the side.
When Adding row every value (Input, DatePicker, DropDown) should show validation error if not completed, not on save.
Validation should trigger on value changed(like entering keys in Input)

Can anyone help me out with a sample for this? I can't seem to get it to work.
Is this even possible or partially possible?

<RadzenDataGrid @ref=grid Data=sales TItem=Sale RowSelect=RowSelect EditMode=DataGridEditMode.Single/>

@code {
protected IEnumerable sales;
protected async Task RowSelect(Sale data)
{
await grid.EditRow(data);
}
}

This works fine for existing items, but for new items if you click on the newly added row, it will dissapear, atleast if i implement the example provided in InLineEdit and add this code you provided