Can I combine submit and print into one button

  • JimEsch
    Asked on February 26, 2018 at 2:11 PM

    Can I combine submit and print into one button?

  • Adrian
    Replied on February 26, 2018 at 3:31 PM

    It is not possible to combine the Submit button and the Print button. These are different actions that require separate buttons.

    If you want to make sure your form is Printed before it is Submitted, here is a workaround solution.

    - Add an extra Submit button
    - Add a Yes / No Question ("Did you print the form?")
    - Add a condition that shows the extra Submit button if the answer to the previous question is Yes

    1519676953submit Screenshot 10

    - Change the Custom CSS to:

    #input_14 {
        display: none;
    }

    Result:

    15196769762018 02 26 21 27 01 Screenshot 21

    DEMO: https://form.jotform.com/80565567162967

  • JimEsch
    Replied on February 26, 2018 at 8:53 PM

    Thanks!