Questions tagged [smart-wizard]

Smart Wizard is an accessible step wizard jQuery plugin with Bootstrap compatibility, developed by Dipu Raj of TechLaboratory.net

Smart Wizard is a flexible jQuery plug-in for wizard like interface. It allows to group contents into sections and so it saves page space and also gives a neat and stylish interface with various themes.

Home page
Documentation
Demo
GitHub Repository

83 questions
2
votes
2 answers

JQuery SmartWizard - JQuery-Pluggin

I am using following control to design a wizard in JQuery: http://techlaboratory.net/smartwizard/documentation By Default it shows three buttons (properties) labelNext, labelPrevious, labelFinish As per requirement I would like to add another button…
user2739418
  • 1,623
  • 5
  • 29
  • 51
2
votes
2 answers

Hide Message or Fade out Alert message

I want to hide the alert message when I moved to next step. I am using jquery smart wizard tab navigation. Please check the sample code. if(step == 1){ if(validateStep1() == false ){ isStepValid = false; …
1
vote
1 answer

Jquery Smart Wizard freezing up

I'm using IE 8 and the jquery smart wizard version 3.2.0. I've noticed when enclose the smart wizard within an additional
tag (with the intent of displaying the wizard within a jquery dialog popup), the wizard will not advance steps when a…
Andrew
  • 253
  • 2
  • 14
1
vote
6 answers

jQuery - SmartWizard. How can I override "Previous" button validation?

Basically, I need to validate data when the "Next" button is clicked, but if the user wants to go back I do not want to validate if they have introduced the required fields for the current step $('#wizard').smartWizard({ onLeaveStep:…
aleafonso
  • 2,244
  • 8
  • 38
  • 58
1
vote
1 answer

jQuery Smart Wizard - LeaveStep not registering properly - enable/disable button

I am using the SmartWizard plugin to create a wizard form to enter new user details. I have a custom "Submit" button that is supposed to be disabled until the user reaches Step 5, the last step of the form. Via SmartWizard's leaveStep function I…
Armitage2k
  • 1,164
  • 2
  • 27
  • 59
1
vote
1 answer

Issues with SmartWizard - jQuery

I am using a smart wizard plugin in my web page (version 0.98). Here is my web page: I have two issues: 1) Each of the "tabs" on the wizard has a different content height. Therefore, I want the wizard to be resized height-wize when a new tab is…
Aviv
  • 11
  • 1
  • 2
1
vote
1 answer

Smart Wizard - Multiples Only Resetting First Instance

I have a form with multiple Smart Wizards using incrementing UIDs for each. I want to restart the wizard to Step 1 when clicking the form Back or Reset buttons (external from the wizards). Step reset is only happening on the first instance of the…
1
vote
1 answer

Use custom validation in smart wizard?

I want to ask if I can use Laravel validation in the Smart Wizard. my example takes an error message from laravel to appear in the smart wizard. In this stage I followed the example of the official web documentation. this is the code that I made: in…
Auxulry
  • 173
  • 4
  • 21
1
vote
1 answer

Why does my code keep sending ajax calls using the smartwizard plugin?

I have a plugin that creates a form on my website which has steps to it. This is my code in which I am making the call: $(document).ready(function(){ $('#smartwizard').smartWizard({ lang: { next: 'Volgende', …
twan
  • 2,450
  • 10
  • 32
  • 92
1
vote
0 answers

Smart Wizard ToolbarButtonPosition : 'right' not working

I am using smart wizard 2 . I have the wizard showing up correctly however one thing does not work. The toolbarButtonPosition always shows up on left side even if i give it the value of right. This is what i have toolbarSettings: { …
Junaid Shirwani
  • 360
  • 1
  • 6
  • 20
1
vote
2 answers

Jquery SmartWizard Add Extra Button

How to add the extra buttons in jquery smart wizard Tried Code : I have added the toolbar section code.. Still its not working. Can someone help me on this? JSFIDDLE DEMO $('#wizard').smartWizard({ transitionEffect: 'slide', …
Question User
  • 2,093
  • 3
  • 19
  • 29
1
vote
0 answers

add a function on jquery smart wizard

I want to input data from multiselect (right side) to database, I use the default form smart wizard from gentelella template, to get data from multiselect I make function: function selectAll(theSel) { var selLength =…
1
vote
1 answer

how to make class="done" isdone="1" in smart wizard by default?

I'm using jQuery SmartWizard 3.3.1 in my project. I have 5 steps and I want to make all the steps enable(class="done" isdone="1") in every state. I try to do that using below HTML code, I already tried this answer. ...
tk_
  • 16,415
  • 8
  • 80
  • 90
1
vote
1 answer

How I can disable anchor clickable on smartWizard plugin?

I use this code, but the anchors are always clickable when I click on the next button. I want to disable the anchors step navigation. How I can do this? This is my init function... $('#smartwizard').smartWizard({ onFinish: function () { …
Rinocs92
  • 17
  • 6
1
vote
1 answer

JQuery SmartWizard Form Submission

So I have a Spring Boot API project using Jquery SmartWizard. The first Step of 4 contains a simple form. For the sake of testing, am using with one field (ID: first-name). On clicking of the Next button of the Wizard, the jquery method should…
Marcellinus
  • 134
  • 2
  • 15