Here is my code:
<RadzenDataGridColumn TItem="BseAssessment" Property="AssessmentName" Title="Assessment Name">
<EditTemplate Context="bse">
<RadzenText @bind-Value="bse.AssessmentName"></RadzenText>
</EditTemplate>
</RadzenDataGridColumn>
The RadzenDataGridColumn displays the information correctly:
When I click the Edit button, it shows this:
And the error message is:
One of the other fields in the same record is a double stored as a string (i.e. "1.2"), and it got the same error. I changed the editor field to a RadzenNumber with a TValue of "string" and that fixed that problem.
...but I can't for the life of me figure out why a string value, "The Boat", is throwing that error in a RadzenText field?
What am I missing?