mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-01-22 03:05:28 +01:00
53 lines
1.3 KiB
JavaScript
Executable File
53 lines
1.3 KiB
JavaScript
Executable File
(function ($) {
|
|
'use strict';
|
|
var form = $("#example-form");
|
|
form.children("div").steps({
|
|
headerTag: "h3",
|
|
bodyTag: "section",
|
|
transitionEffect: "slideLeft",
|
|
onFinished: function (event, currentIndex) {
|
|
alert("Submitted!");
|
|
}
|
|
});
|
|
var validationForm = $("#example-validation-form");
|
|
validationForm.val({
|
|
errorPlacement: function errorPlacement(error, element) {
|
|
element.before(error);
|
|
},
|
|
rules: {
|
|
confirm: {
|
|
equalTo: "#password"
|
|
}
|
|
}
|
|
});
|
|
validationForm.children("div").steps({
|
|
headerTag: "h3",
|
|
bodyTag: "section",
|
|
transitionEffect: "slideLeft",
|
|
onStepChanging: function (event, currentIndex, newIndex) {
|
|
validationForm.val({
|
|
ignore: [":disabled", ":hidden"]
|
|
})
|
|
return validationForm.val();
|
|
},
|
|
onFinishing: function (event, currentIndex) {
|
|
validationForm.val({
|
|
ignore: [':disabled']
|
|
})
|
|
return validationForm.val();
|
|
},
|
|
onFinished: function (event, currentIndex) {
|
|
alert("Submitted!");
|
|
}
|
|
});
|
|
var verticalForm = $("#example-vertical-wizard");
|
|
verticalForm.children("div").steps({
|
|
headerTag: "h3",
|
|
bodyTag: "section",
|
|
transitionEffect: "slideLeft",
|
|
stepsOrientation: "vertical",
|
|
onFinished: function (event, currentIndex) {
|
|
alert("Submitted!");
|
|
}
|
|
});
|
|
})(jQuery); |