![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/www/ondjoweb/admin/assets/pages/ |
/** * Theme: Zircos Admin Template * 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 form with validation FormWizard.prototype.createValidatorForm = function($form_container) { $form_container.validate({ errorPlacement: function errorPlacement(error, element) { element.after(error); } }); $form_container.children("div").steps({ headerTag: "h3", bodyTag: "section", transitionEffect: "slideLeft", onStepChanging: function (event, currentIndex, newIndex) { $form_container.validate().settings.ignore = ":disabled,:hidden"; return $form_container.valid(); }, onFinishing: function (event, currentIndex) { $form_container.validate().settings.ignore = ":disabled"; return $form_container.valid(); }, onFinished: function (event, currentIndex) { alert("Submitted!"); } }); 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")); //form with validation this.createValidatorForm($("#wizard-validation-form")); //vertical form this.createVertical($("#wizard-vertical")); }, //init $.FormWizard = new FormWizard, $.FormWizard.Constructor = FormWizard }(window.jQuery), //initializing function($) { "use strict"; $.FormWizard.init() }(window.jQuery);