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
0
votes
1 answer

Installing SmartWizard in Rails app

I was implementing Gentelella Admin Theme in my Rails 5 application. There's already a sample Gentelella Rails 5 app mentioned in their readme but it doesnt have SmartWizard yet. However, the original theme has it already embedded into it. I still…
Talha Meh
  • 487
  • 7
  • 20
0
votes
0 answers

JQuery Smart Wizard onFinish not working

I have this code of the form wizard.
Then I have this code.…
AyakoS
  • 221
  • 2
  • 7
  • 18
0
votes
1 answer

I have to set a image on wizard dialogue,classpath load this image, but image not displayed properly

I have to set a image on wizard dialogue in swt,classpath load this image but image not displayed properly. In my design create a composit in this composit create a lebel.there after in this lebel I want add an image.After that i will create a…
Biswabir
  • 19
  • 8
0
votes
1 answer

Making the left column move according to selection?

I came across a jQuery Wizard plugin at the following URI: http://www.techlaboratory.net/labs/SmartWizard/wizard-vertical.htm While it serves my purpose, I am trying to achieve one small thing. If I add more than 5 steps, obviously not all steps are…
Legend
  • 113,822
  • 119
  • 272
  • 400
0
votes
5 answers

How to disable Finish button after first click

I've tried the various methods that normally work, but it seems SmartWizard is preventing these methods from working. I need to disable the Finish button and change the text after it is clicked to prevent multiple submissions. No matter where I…
Connie DeCinko
  • 996
  • 5
  • 19
  • 39
0
votes
1 answer

Equal Height Step Buttons in Smart Wizard

The jQuery Smart Wizard https://github.com/mstratman/jQuery-Smart-Wizard plugin has been around for several years and it appears development stopped about 3 years ago. However, Smart Wizard still works quite well and I haven't found anything that…
Connie DeCinko
  • 996
  • 5
  • 19
  • 39
0
votes
1 answer

How can I prevent jQuery smartWizard from moving to the next step on enter press?

I have tried this code but it is not working. var wizardForm = $('#form'); wizardForm.on('keyup keypress', function(e) { var code = e.keyCode || e.which; if (code == 13) { e.preventDefault(); return false; } });
Gustavo Reyes
  • 1,313
  • 1
  • 17
  • 31
0
votes
2 answers

How I skip validation when going backward - SmartWizard

I am using Jquery smartwizard link, I need to stop the validation when user click on "Previous" button in any step(By default in 1st step Previous button is disabled) except 1st step. Here is my javascript code $(document).ready(function () { …
user3635258
  • 51
  • 1
  • 2
  • 5
0
votes
2 answers

Add custom validation in SmartWizard

I have below code part in SmartWizard. I want to add custom validation to each HTML controls.


Sivakumar Piratheeban
  • 493
  • 4
  • 11
  • 39
0
votes
1 answer

Smart Wizard 2.0 redirecting issue ? MVC4

I been working on wizard . I been stuck in a tricky situation i.e By default i am getting PREVIOUS , NEXT , FINISH . But i want to customize my wizard which having 4 stages . on stage 1 & 2 : next & save button stage 3 : send for approval stage 4…
super cool
  • 6,003
  • 2
  • 30
  • 63
0
votes
2 answers

jQuery SmartWizard 3.0 - goToStep method causes infinite loop

I'm trying to use the jQuery Wizard SmartEizard 3.0 which has a 'goToStep' method allowing you to jump to a given step based on a logic. I tried it with the below code but it seems to get stuck in an infinite loop and never goes to the next step.…
ke3pup
  • 1,835
  • 4
  • 36
  • 66
0
votes
3 answers

How to remove an element's attribute/class after page load using jquery if the attribute is being added by another script(Smartwizard plugin)

I am using a jquery plugin (smartwizard) to make a form wizard. The plugins automatically adds an attribute called "isdone" and a class called "done" on all links that appears in the form. This helps the plugin to know which form steps are…
Tom Mwenda
  • 155
  • 3
  • 16
0
votes
2 answers

How to submit smart form wizard before come to last step

I,m using SmartWizard in my project for getting the user registered with my web site. But i want to save all the data at the step 3 where the wizard has four steps. The wizard submits the form after clicking the finish button. Below code will…
koli
  • 194
  • 1
  • 6
  • 24
0
votes
1 answer

calling js function in html

i am trying to call the function i added to the smartWizard js which is smartWizard.js function changeConfirmButton(){ $(btConfirm).removeClass("buttonDisabled"); } i tested it by calling in the js and it work fine as i…
user2612767
  • 11
  • 1
  • 4
0
votes
1 answer

Bootstrap Modal, iFrame and Smart Wizard form

I am trying to launch a smartwizard form from a bootstrap modal via iframe and I am having issues with the first page of the form. The modal opens correctly, but STEP 1 of the form has not been opened. If you click next STEP 2 appears, and you can…
user2683780
  • 195
  • 2
  • 8