How can save each step of a Wizard form when on next button ?

Hello everyone,

I created a Wizard form and i need to save each step on clicking on next button. Any help please ?
Solution
You can use Step by using lifecycle hooks ->afterValidation(function () {
// ...
})
->beforeValidation(function () {
// ...
})
Was this page helpful?