Form Wizard


                   


Step 1 Content

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Theme Customizer

Theme Styles



Header Colors


Sidebar Colors

$(document).ready(function () { // Toolbar extra buttons var btnFinish = $('').text('Finish').addClass('btn btn-info').on('click', function () { alert('Finish Clicked'); }); var btnCancel = $('').text('Cancel').addClass('btn btn-danger').on('click', function () { $('#smartwizard').smartWizard("reset"); }); // Step show event $("#smartwizard").on("showStep", function (e, anchorObject, stepNumber, stepDirection, stepPosition) { $("#prev-btn").removeClass('disabled'); $("#next-btn").removeClass('disabled'); if (stepPosition === 'first') { $("#prev-btn").addClass('disabled'); } else if (stepPosition === 'last') { $("#next-btn").addClass('disabled'); } else { $("#prev-btn").removeClass('disabled'); $("#next-btn").removeClass('disabled'); } }); // Smart Wizard $('#smartwizard').smartWizard({ selected: 0, theme: 'dots', transition: { animation: 'slide-horizontal', // Effect on navigation, none/fade/slide-horizontal/slide-vertical/slide-swing }, toolbarSettings: { toolbarPosition: 'both', // both bottom toolbarExtraButtons: [btnFinish, btnCancel] } }); // External Button Events $("#reset-btn").on("click", function () { // Reset wizard $('#smartwizard').smartWizard("reset"); return true; }); $("#prev-btn").on("click", function () { // Navigate previous $('#smartwizard').smartWizard("prev"); return true; }); $("#next-btn").on("click", function () { // Navigate next $('#smartwizard').smartWizard("next"); return true; }); // Demo Button Events $("#got_to_step").on("change", function () { // Go to step var step_index = $(this).val() - 1; $('#smartwizard').smartWizard("goToStep", step_index); return true; }); $("#is_justified").on("click", function () { // Change Justify var options = { justified: $(this).prop("checked") }; $('#smartwizard').smartWizard("setOptions", options); return true; }); $("#animation").on("change", function () { // Change theme var options = { transition: { animation: $(this).val() }, }; $('#smartwizard').smartWizard("setOptions", options); return true; }); $("#theme_selector").on("change", function () { // Change theme var options = { theme: $(this).val() }; $('#smartwizard').smartWizard("setOptions", options); return true; }); });