-
Notifications
You must be signed in to change notification settings - Fork 24
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
yii validation issue #24
Comments
is solved? |
Hello, I replaced .next-step class on Next button to custom class .fake-next-step and created a new function that is called when the user click .fake-next-step It's worked for me
|
A clever way of having the validation done on each step is to hide the default buttons. My assumption is that you have split your form into different forms for each step |
Hi Drsdre,
how to validate the each form before goes to next from when i click the next button in each case.
i tried to add onclick function in button option, then check has_error like
function myfunction() {
var form = $('#login-form').find('.has-error').length;
if (form == 0) {
return false;
}
}
validation coming but it goes to next form. how to stop that.
Thanks for wizard, Please help.
The text was updated successfully, but these errors were encountered: