Radzen datagrid selection

Hello
I'm using a Blazor server app and
i want to search for some backend info by clicking once on a datagrid row.

So i thought one of these events could help me:
RowClick="@( () => TestIt(SelectedRecords[0].ID))"
RowSelect="@( () => TestIt(SelectedRecords[0].ID))"

But they give me the previous selected record.

When using:
RowDoubleClick="@( () => TestIt(SelectedRecords[0].ID))
My program works fine.
But is there a way to achieve this with one click?

regards Bart

Hey @schuttea,

Both RowClick and RowDoubleClick have data item as argument.