<EditTemplate>
<Validation>
<TextEdit Text=@((string)context.CellValue) TextChanged=@(x => context.CellValue = x) TextExpression="@(()=>context.Item.FirstName)">
<Feedback><Blazorise.ValidationError /></Feedback>
</TextEdit>
</Validation>
</EditTemplate>
TextExpression="@(()=>context.Item.FirstName)"
will target the wrong model
<Validation Validator="ValidationRule.IsNotEmpty">
DataGrid.ValidationItem
and then it will be possible
args.Single = true
is the right way to make it.
Striped
on a Table then it is easy to do, https://blazorise.com/docs/components/table
<DataGrid Striped="true">