Uploaded From CV. Swandhana Server
This commit is contained in:
58
public/high/assets/pages/jquery.wizard-init.js
Normal file
58
public/high/assets/pages/jquery.wizard-init.js
Normal file
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* Theme: Highdmin - Responsive Bootstrap 4 Admin Dashboard
|
||||
* Author: Coderthemes
|
||||
* Form wizard page
|
||||
*/
|
||||
|
||||
!function($) {
|
||||
"use strict";
|
||||
|
||||
var FormWizard = function() {};
|
||||
|
||||
FormWizard.prototype.createBasic = function($form_container) {
|
||||
$form_container.children("div").steps({
|
||||
headerTag: "h3",
|
||||
bodyTag: "section",
|
||||
transitionEffect: "slideLeft",
|
||||
onFinishing: function (event, currentIndex) {
|
||||
//NOTE: Here you can do form validation and return true or false based on your validation logic
|
||||
console.log("Form has been validated!");
|
||||
return true;
|
||||
},
|
||||
onFinished: function (event, currentIndex) {
|
||||
//NOTE: Submit the form, if all validation passed.
|
||||
console.log("Form can be submitted using submit method. E.g. $('#basic-form').submit()");
|
||||
$("#basic-form").submit();
|
||||
|
||||
}
|
||||
});
|
||||
return $form_container;
|
||||
},
|
||||
//creates vertical form
|
||||
FormWizard.prototype.createVertical = function($form_container) {
|
||||
$form_container.steps({
|
||||
headerTag: "h3",
|
||||
bodyTag: "section",
|
||||
transitionEffect: "fade",
|
||||
stepsOrientation: "vertical"
|
||||
});
|
||||
return $form_container;
|
||||
},
|
||||
FormWizard.prototype.init = function() {
|
||||
//initialzing various forms
|
||||
|
||||
//basic form
|
||||
this.createBasic($("#basic-form"));
|
||||
|
||||
//vertical form
|
||||
this.createVertical($("#wizard-vertical"));
|
||||
},
|
||||
//init
|
||||
$.FormWizard = new FormWizard, $.FormWizard.Constructor = FormWizard
|
||||
}(window.jQuery),
|
||||
|
||||
//initializing
|
||||
function($) {
|
||||
"use strict";
|
||||
$.FormWizard.init()
|
||||
}(window.jQuery);
|
||||
Reference in New Issue
Block a user