Does anyone have any experience with multi-step forms to create / update content? Existing Drupal modules that I've found are pretty old and seem somewhat shaky. I'm guessing that people who've needed this kind of interface wrote custom solutions.
I did wonder if doing some kind of Webform => node submission would do it. Depends on if they need the multistep only for creation, or for editing as well.
Sorry I dont have a ready solution to this. The big issue is of course if you need multistep editing as well as creation, in which case Webform wouldnt help. A custom mutistep form would also be complicated if you decided to be able to add or remove new fields.
Best bet is to port https://www.drupal.org/project/msnf. It isnt pretty old (2011) but not sure if its shaky.
Thanks, I see! So you're trying the same method as I did. At the moment, I don't have ideas why it should fail on your site. Maybe have a look at the database log (admin/reports/dblog)?
Posted21 hours 36 min ago by Olaf Grabienski (Olafski) on:
Hi @dyrer, I've just updated one of my sites from Backdrop 1.29.0 to version 1.29.1, using the built-in update functionality at the page admin/config/system/updates. I was able to update without...
Posted21 hours 52 min ago by Olaf Grabienski (Olafski) on:
I got this additional hint in Zulip:
Hint: Themes are a bit different. They can ship with a screenshot.png, which doesn't need any adaptions in the readme - they display on B-org...
You can also use HTML which is useful if you want to size, position or otherwise style the image:
<img src="https://raw.githubusercontent.com/backdrop-contrib/bee/1.x-1.x/images/bee.png" align="...
Posted1 day 23 hours ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
Comments
If it's just about some simple data, Webform is probably your friend. Then display form submissions in a view.
If it has to be nodes, hook_form_alter() might be your friend.
But maybe @docwilmot has better tips. It seems, he ported/forked the Ctools form wizard.
I did wonder if doing some kind of Webform => node submission would do it. Depends on if they need the multistep only for creation, or for editing as well.
Sorry I dont have a ready solution to this. The big issue is of course if you need multistep editing as well as creation, in which case Webform wouldnt help. A custom mutistep form would also be complicated if you decided to be able to add or remove new fields. Best bet is to port https://www.drupal.org/project/msnf. It isnt pretty old (2011) but not sure if its shaky.