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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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

Empty


...

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; }
And add these two columns to the SfGrid:

Empty
NOTE: Same behavior occurs when adding the ValidationRules to the GridColumn:
Empty

Then try to click "Add" and "Update" leaving the Email field blank

Expected: Email field will get a red tooltip validation message just like OrderID and CustomerID do.

Actual: No tooltip is displayed for Email

Empty