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!

2
Votes

Coming from a competitor library, I miss a lot a series of components like "RequiredValidator" "CompareValidator", "EmailValidator", etc that can be use without the need of having a Model object with DataAnnotation.

Often I use my POCO classes (or directly the entities scaffolded from the database) that I don't want to mess with attributes and for small project having another model to map with the domain/dal entity is a waste of time

The Component are "bounded" with the corrisponded input component thru a defined attribute, eg
<SfTextBox Name="FirstName" ...>
<SfRequiredValidator Component="FirstName" Message="Firstname is mandatory" ...>

The types of validators could be Required, Compare (also for datetime), NumericRange, Email, Length (min,max), Regex, Custom