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
7
votes
3 answers

Skip validation when going backwards in SmartWizard

I am using the SmartWizard 2.0 (link) and I need to stop the validation from kicking in when the users hits the "Prev" button or in any way moves backward in the form. Currently I am using // Triggers whenever you change page/tab in wizard …
Stian
  • 1,261
  • 2
  • 19
  • 38
4
votes
3 answers

JQuery SmartWizard - Step being shown, but not being enabled

I am using this Jquery plugin to create a Wizard like interface: JQuery Bootstrap Smart Wizard I have 5 steps in the wizard. Step 3 and Step 4 are hidden when the wizard first loads. When a user selects "Yes" Radio button in Step 2 and then clicks…
Jake
  • 25,479
  • 31
  • 107
  • 168
3
votes
4 answers

Disable Finish button for jQuery Smart Wizard 4

I have a problem on disabling the "Finish" button on jQuery Smart Wizard 4. The example given in the site has the button enabled by default. It should have the Finish button disabled by default and should enable only once it reaches the last step.…
Genes Molina
  • 53
  • 1
  • 9
3
votes
3 answers

All steps active in smartwizard 4

I've included smartwizard in the forms in my application, and it works great, during insert. However, during update, I want to show all steps visited, so that instead of clicking on the next button, the user can get directly to the tab s/he wants.…
Abhishek Acharya
  • 339
  • 4
  • 12
3
votes
4 answers

Smart-Wizard does not load first step

So I am using smart-wizard https://github.com/mstratman/jQuery-Smart-Wizard. I have included it in js-popup, so when I open the popup it does not show the first step. I need go to the second step and then go back to see the first step
MrEnergy
  • 77
  • 2
  • 10
3
votes
3 answers

Waiting for ajax response same function

I know that similar questions have been posted many times, however I've read many of them and can't find an answer to my problem. I have a function that waits for an ajax request response. Many of you will ask why? Well, I'm using a Wizard Jquery…
imarban
  • 1,017
  • 1
  • 9
  • 24
3
votes
3 answers

reset jquery smartwizard

I am using jquery smartwizard My wizard opens in a dialog when a user clicks on a button named "create". When the user clicks the button again, I want the wizard to reset and start a fresh wizard but it retains its state. If i reinitialize it, then…
vivek jain
  • 31
  • 1
  • 4
3
votes
1 answer

Adding submenu dynamically for smartwizard 2.0

Hi I am using smartwizard 2.0 plugin and I wonder if someone can help me out here. Basically I am trying to add one more menu dynamically when user clicks the some button. I have given the code below. function add_submenu() { var ulid =…
user1257832
2
votes
1 answer

jQuery ajax: loading html + applying plugin, ie7

I have a part of a page that i want to load using ajax. The content is the html for this wizard: http://techlaboratory.net/labs/SmartWizard2/index.htm What im currently doing: $(function(){ $.ajax({ url: 'content.htm', dataType:…
Johan
  • 35,120
  • 54
  • 178
  • 293
2
votes
1 answer

How to go forward in smart wizard after ajax success

I want to go to the next step if the ajax call is successful, but i am not able to call the smart wizard methods inside the ajax call. My code is here. var wizard = $("#listing_wizard").smartWizard({onLeaveStep:stepSubmit}); //stepsubmit …
Ravi
  • 163
  • 2
  • 11
2
votes
1 answer

How I can skip step of jQuery Smart Wizard?

I tried to skip step, but it doesn't work. I use this code: $('#wizard').smartWizard('goToStep', 3); in this code } else if (stepnumber == 2){ if (validate_step('#step-2-form')) { var form_data = $('#step-2-form').serializeArray(), …
JRazor
  • 2,707
  • 18
  • 27
2
votes
4 answers

Google map not showing when inside a hidden div

I see a lot of people with having resizing issues when showing a hidden div, but I am having a slightly different problem that requires a different solution. My google map works fine normally, but I am now building a wizard to only show steps of my…
user6377028
2
votes
0 answers

how to do form validation using smart wizard js?

I did a form validation using smart wizard js but in the second step previous not showing. next button showing twice step container: As you can check with the image. http://techlaboratory.net/smartwizard/demo/validation
Parker
  • 141
  • 3
  • 20
2
votes
1 answer

jQuery Smart Wizard 3.0 post all form fields in the wizard

I'm using the vertical layout to display a form with 12 steps. when I hit finish only the first section is submitted. here's the javascript code: $('#wizard').smartWizard({ selected:0, enableAllSteps: true, // Enable/Disable all steps on…
Scott Stewart
  • 55
  • 1
  • 9
2
votes
2 answers

outerHeight in Chrome giving wrong value, OK in IE and FireFox

In the jquery.smartWizard plugin, there is a function called fixHeight which adjusts the height of a wizard step. This is used when a step is first displayed or when revealing hidden divs within the step. It works fine in IE (at least in IE 11 on…
Connie DeCinko
  • 996
  • 5
  • 19
  • 39
1
2 3 4 5 6