• Resolved amirdorna

    (@amirdorna)


    Hi,

    Is there any way I can add Submit button at the end of each page so in case the user needs to go to the next page, they click on the ” Next” and in case it was not needed they can submit the form and finish the calculation ?

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @amirdorna,

    Insert a submit button in every page is as simple as insert a button field with the following piece of code as its onclick event:

    
    jQuery(this).closest('form').submit();
    

    However, if there are required fields in other pages of the form, that where not filled by the user, the form’s validation will fail, and won’t be submitted.

    Best regards.

Viewing 1 replies (of 1 total)

The topic ‘Adding Submit Button To all Pages’ is closed to new replies.