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
josef
josef2y ago
You can try modifying the NextAction using ->nextAction(static fn (Action $action): Action => $action->...) and use the lifecycle hooks to save your data
fikurimax
fikurimaxOP2y ago
ahh, 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?
josef
josef2y ago
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.
fikurimax
fikurimaxOP2y ago
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?
fikurimax
fikurimaxOP2y ago
Thanks, I'll try it 🙏🏼

Did you find this page helpful?