-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multi step wizard #95
Comments
We would need to add a form.touch(['name'])
form.touch(['email'])
// name and email are now "touched" |
For now, this can be resolved using the following approach before the touch method |
This did not work for me, calling the |
I forgot about
|
Thank you so much @e4se ! Works great |
PR up for this one: #105 |
See my other comment on some more improvements to handling wizards. Removes the need for the |
Laravel Precognition Plugin Version
0.5.8
Laravel Version
11
Plugin
Vue w/ Inertia
Description
Multi step wizard and user validate first step and jump to second step. Then click back and jump back to first step.
If the user has not touched any fields, you cannot validate the same fileds. How can I now than form is alrady validated and skip validation, and jump to second step.
Steps To Reproduce
Step 1
skip validation if the user has not touched any fields and the form has already been validated or validate again....
form.touch(["first_name", "last_name"]).validate({
onSuccess: (response) => {
nextStep()
},
});
The text was updated successfully, but these errors were encountered: