Can we trigger validations only after the submit button click?

  • MiPri
    Asked on August 13, 2017 at 7:03 AM

    Hello Team,

     

    the mandatory fields of the form will be checked immediately after a field was entered. This confuses some users of the form. Will it be posible, to check, if all necessary fields are filled, when the form will be sended, printed or stored. In this case, the error message will only appeared, when the user finishes the process and not during maintaining the form.

     

    Thank you very much for your help.

     

    Best regards

    Michael Prinz

  • Mike
    Replied on August 13, 2017 at 7:55 AM

    Unfortunately, we do not have such option. Alternatively, you may consider adjusting the validation styles. For example, it is possible to remove the warning messages and required field highlighting by adding the next CSS.

    .form-error-message {
    display: none;
    }
    .form-line-error {
    background: transparent;
    }

    Can we trigger validations only after the submit button click? Image 1 Screenshot 40

    It will change the validation from:

    Can we trigger validations only after the submit button click? Image 2 Screenshot 51

    To:

    Can we trigger validations only after the submit button click? Image 3 Screenshot 62

    The final warning message will be still displayed upon the submit button click.

    If you need any further assistance, please let us know.