-
I'm trying to validate a date in my view model that is bound to my EditForm controls. I'm using BlazoredFluentValidation. My code is throwing as I discovered per the docs. What is the way to do this, then? How do I validate it? Is there a workaround or has this been changed in 4.11x? TIA |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It's not very clear to me: we don't have and don't support a BlazoredFluentValidation component 😀 You can find a complete example of form validation at this address: https://www.fluentui-blazor.net/Forms If you want to add a custom validation for the Date element, you can use an |
Beta Was this translation helpful? Give feedback.
It's not very clear to me: we don't have and don't support a BlazoredFluentValidation component 😀
You can find a complete example of form validation at this address: https://www.fluentui-blazor.net/Forms
And the official Microsoft doc: https://learn.microsoft.com/en-us/aspnet/core/blazor/forms/validation
If you want to add a custom validation for the Date element, you can use an
OnValidSubmit=“ Submit”
method in which the validation can be adapted.