By Bossen on
I am gonna repost this question:
"My question is simple: How do I render a submit button invisible?
In some cases my form submit button should not be shown.
Thanks..."
I have a multipage form(3 pages), and it should only be possible to submit the form on page 2(!).
Actually, I would like the submit button, as well as the delete and preview buttons to be hidden except on page 2(other buttons handle the navigation)
How can I accomplish this?
Comments
A starting point
The following function would be added to your module, replacing 'yourmodule' with you modules name and 'yourtype' with your content type.
In building your form you need to track if this is the lastpage (as in the example) setting it to false for everything but the last page. You could use different logic for when to hide the buttons.
Thanks!
Thank you very much!
It works perfectly...
Alternative way
You can use below alternative method. Syntax is as per Drupal 8