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
Is your feature request related to a problem? Please describe.
I have two fields that get validated only on:blur. There is a combined field comprised of the other two, that performs additional validation of the two fields. Since the combined field validators are called whenever there is any change in the two fields, it is as if the two are checked on:change, which results unwanted and unnecessary validations (and many API requests).
Describe the solution you'd like
Would be great to have an option like manualValidation in combined fields to only validate manually. So when that option is enabled, validation will occur only when explicitly called. As a default it should probably be false.
Additional context
If this is implemented, perhaps it should come with a valid option for combined fields, so one could set valid to false and with that make sure that manual validation must be called for the combined field.
The text was updated successfully, but these errors were encountered:
Private life's been a bit busy recently.
If you are willing to make a change and create a pull request it would be cool! otherwise i'm going to work on it as soon as I can.
Is your feature request related to a problem? Please describe.
I have two fields that get validated only
on:blur
. There is a combined field comprised of the other two, that performs additional validation of the two fields. Since the combined field validators are called whenever there is any change in the two fields, it is as if the two are checkedon:change
, which results unwanted and unnecessary validations (and many API requests).Describe the solution you'd like
Would be great to have an option like
manualValidation
in combined fields to only validate manually. So when that option is enabled, validation will occur only when explicitly called. As a default it should probably befalse
.Additional context
If this is implemented, perhaps it should come with a
valid
option for combined fields, so one could setvalid
tofalse
and with that make sure that manual validation must be called for the combined field.The text was updated successfully, but these errors were encountered: