Submitting form on each steps in Wizard layout
Is it possible to submit form on the action button on each steps? If so how can I do that
Thanks
6 Replies
You can try modifying the
NextAction
using ->nextAction(static fn (Action $action): Action => $action->...)
and use the lifecycle hooks to save your dataahh, thanks. I'll try that
I've tried it and it works. But I have a following question, how can I prevent wizard to go to the next step?
Why would you want that? Maybe a wizard is not the best option here, if you need to save directly and NOT move on to the next step, since that is exactly what the wizard is for, multi-step forms that progress when you click next and submit at the end.
Tbh I only need the UI
Now Im using section, but I also have a problem with button. Can i add button inside the section?
Thanks, I'll try it ππΌ