• Resolved patoel

    (@patoel)


    Hi,
    I create some field with Name & Email address, is it possible to disable next button if the user don’t put the name and email address?

    • This topic was modified 3 years, 7 months ago by patoel.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @patoel

    Yes, you can, but you will need a calculated field as an auxiliary. I’ll try to describe the process with a hypothetical example. Assuming the name and email fields are the fieldname1 and fieldname2, respectively. Insert a calculated field in the form (you can configure it as hidden by ticking a checkbox in its settings) with the equation:

    jQuery('.pbreak:visible .pbNext')[IF(AND(fieldname1,fieldname2), 'show', 'hide')]();

    Best regards.

    Thread Starter patoel

    (@patoel)

    Hi @codepeople,

    Thanks for this info, its work like a charm

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘enable or disable next button’ is closed to new replies.