Warning Validation
Currently, if the validation condition is not met in the form the user is prompted with the validation message and cannot proceed to submit the data.
We find this very useful, however we would also like to see the same process but a "warning" validation, so the form says "OK, this doesn't look quite right, would you like to go ahead and submit anyway?".
We're currently doing this using labels, which only show when the condition value is met. However, this is not ideal as users do not notice and continue to submit some potentially bad data. We would like more of a prompt.
-
Hi Adam, I think this could be solved with another field on the form which allows the user to satisfy the validation logic. For example if you are looking to have a field contain a number higher than 5, you can put that in a validation statement. In addition to checking for the value being greater than 5, you could allow that to "slide" by having an override field, which if filled in satisfies the validation.
Ex:
number_field>5 || override_field=="accept"
What do you think?
Please sign in to leave a comment.
Comments
1 comment