i use metronic_v8.1.6 and i want to know how to validate each step before going to the next step
Hi,
Please refer to src/js/custom/utilities/modals/create-account.js
:
stepperObj.on("kt.stepper.next", function (stepper) {
if (status == "Valid") {
stepper.goNext();
} else {
//
}
});