• Resolved akitaro

    (@akitaro)


    Hello @codepeople,

    It was just brought to my attention that the “Required” fields in my form are not working as required.

    At the moment, they can be left untouched and the user will still be able to finish completing the rest of the form, and see the result in the calculated field without being prompted to complete the “Required” fields. But, if the user clicks in one of the “Required” fields and then wants to move on without actually typing anything in the said field, they will be prompted with a “This field is required”.

    https://streamable.com/2v02rn

    Is there anything else I should do other than tick the Required box in the field’s Basic Settings for them to be mandatory ?

    • This topic was modified 6 months ago by akitaro. Reason: typo
Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @akitaro

    The requirements or other validation rules are used in the current plugin version only at the moment of the form submission or next-page navigation on multipage forms.

    In the current plugin version, you should check the fields’ values from the equations. Ex. If you have the fields fieldname1 and fieldname2, and you want to evaluate the equation fieldname1/fieldname2 if both fields are filled by the user, you can edit it as follows:

    IF(AND(VALIDFIELD(fieldname1|n),VALIDFIELD(fieldname2|)), fieldname1/fieldname2, '');

    We are working in an update to check the fields validation before evaluating the equations.

    Best regards.

    • This reply was modified 6 months ago by codepeople.
Viewing 1 replies (of 1 total)
  • The topic ‘“Required” not working for me’ is closed to new replies.