You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 26, 2025. It is now read-only.
In current implementation, FluentValidationValidator runs validation on every field change by default. While this is common behavior, it may not be desirable for some use cases, where validation after form submit would be sufficient. Now when users want their form to be validated only after it's submitted, they have to resort to manual validation in their submit handler.
Proposed solution
It would be nice to introduce a bool parameter, perhaps called ValidateOnFieldChanged, that would allow to customize validation behavior.