Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I ran into this very odd problem and finally narrowed it down to specifically field names starting with "Email" so I thought I would share. I have tried this with other word combinations and it doesn't seem happen. This rich text input prevents me from pasting in blazor code, so apologies for the screenshots.
If you start from the first example code here:
https://blazor.syncfusion.com/documentation/datagrid/column-validation

But add these two properties to the Order model, making the first one required:
[Required]
public string Email { get; set; }
public string EmailVerified { get; set; }


