We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Returning false via the "onNext" does not prevent the wizard from continuing to the next item.
var wizard = $("#exampleWizardForm").wizard({ step: '.steps .step, .pearls .pearl', templates: { buttons: function buttons() { var options = this.options; return '<div class="panel-footer"><div class="wizard-buttons"><a class="btn btn-default btn-outline" href="#' + this.id + '" data-wizard="back" role="button">' + options.buttonLabels.back + '</a><a class="btn btn-primary btn-outline pull-xs-right" href="#' + this.id + '" data-wizard="next" role="button">' + options.buttonLabels.next + '</a><a class="btn btn-success btn-outline pull-xs-right" href="#' + this.id + '" data-wizard="finish" role="button">' + options.buttonLabels.finish + '</a></div></div>'; } }, classes: { button: { hide: 'hidden-xs-up', disabled: 'disabled' } }, onNext: function(e) { return false; } });
The wizard should not have switched to the next section.
The wizard went to the next section.
The text was updated successfully, but these errors were encountered:
This is a must
Sorry, something went wrong.
you may use validator property, perhaps it help
No branches or pull requests
Checklist
Description
Returning false via the "onNext" does not prevent the wizard from continuing to the next item.
How can we reproduce this bug?
What did you expect to happen?
The wizard should not have switched to the next section.
What happened instead?
The wizard went to the next section.
The text was updated successfully, but these errors were encountered: