How would you create an additional submit button that:
Basically all I have is the code for the existing submit button. <button class="frm_button_submit" type="text" [button_action]>Back To Dashboard</button>
The reason for a second submit button is because I want the text of the button and the redirect to be different depending on values selected in the form. Thanks in advance for any help.
You want 2 submit buttons on one page?
If you just want to change the submit button as it is, you can change the settings to redirect to a url as you wish. As for the button showing or not, look here -> https://formidableforms.com/knowledgebase/general-form-settings/#kb-submit-button-logic
I need two different buttons. the two buttons have different conditional logic, different labels, and different redirects.
As per Victor's message below. You can write your own logic however you choose with JS/JQuery. You can add additional buttons in the "customize HTML" of the form. It will require a little code and some knowledge of HTML/CSS.
Ok. I'll see what I can do. Thanks.
You can have any button use jQuery to execute a form.submit().
Can conditional logic be coded in?
If you mean "conditionally appears only when field ID 243 does not equal blank", then yes. Monitor the change event for field 243 and display the button if it's not blank. Hide the button if it reverts back to blank.
Please login or Register to submit your answer