Filament Wizard
I'm utilizing a form with Filament Wizard, consisting of three sequential steps prompting users to fill in fields. The fourth step serves as the final stage, displaying all the information entered across steps 1 to 3. Could you advise on the best approach for this? Any suggestions would be appreciated.
4 Replies
Perhaps you could update the title of this post to "Wizard: summary on last step?", just to make it more clear for someone who searches about wizards.
In my experience, the wizard itself is a complete form, containing all the elements from all the steps. So, showing a summary on the last step would probably have to be done by having that last step read the submitted data into fresh (unused) "fields". Probably have to use Placeholder objects for that, and have each read the state from the other form fields from the prior steps.
How many fields are in each step? (ie: if it's only a couple items in each step, then a long-form might be better than a wizard anyway)
1st step 9 fields (required and optional)
2nd step 4 fields and has repeaters (required and optional)
3rd step 5 fields (required and optional)
Thanks @DrByte for the suggestion
Hi I'm using the form with Filament Wizard, consisting of five sequential steps promoting users to fill in fields. In the second and third step I'm using the table repeater so in my output the entire form is scrollable. How can solve this issue?