i'm using jquery steps to make wizard i'm not sure how to start over steps after getting in to final step.
$("#etup-wizard").steps({
headerTag: "h3",
bodyTag: "section",
transitionEffect: "slide",
stepsOrientation: "vertical",
onInit: (event, currentIndex) => {
initSetupTableGrid();
$('#addsetup').on('click', onClickSetupTableModal);
},
onStepChanging: (event, currentIndex, newIndex) => {
var valid = $('form#layoutConfig').valid();
return valid;
},
onFinishing: (event, currentIndex) => {
return true;
},
onFinished: (event, currentIndex) => {
// after submit form need to start first step again
}
});
is it possible to do that?