Reference to RadzenTextBox in RadzenDataGrid

If I add an @ref variable to a RadzenTextBox in a RadzenDataGridColumn it seems to only point to the textbox of the last row added. If I select a different row the reference variable to the textbox is always the textbox on the last row. Is there a way to reference the textbox on the active row?

You should no rely on @ref in repeating components like DataGrid, better use two way binding @bind-Value.

Yes, I am binding to the data value, but I was trying to do my own validation because I prefer not to use inline edit mode. So to shade or highlight an invalid value I would need a reference to the actual element.