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:Jump to solution
You can use Step by using lifecycle hooks ->afterValidation(function () {
// ...
})
->beforeValidation(function () {
// ......
4 Replies
Solution
You can use Step by using lifecycle hooks ->afterValidation(function () {
// ...
})
->beforeValidation(function () {
// ...
})
Thank you man
welcome