Questions tagged [jquery-steps]

jQuery Steps is a smart UI component which allows you to easily create wizard-like interfaces. This plugin groups content into sections for a more structured and orderly page view.

Homepage

http://www.jquery-steps.com/

Docs

https://github.com/rstaib/jquery-steps/wiki

Examples

http://www.jquery-steps.com/Examples

Syntax

$("#example-basic").steps({
  headerTag: "h3",
  bodyTag: "section",
  transitionEffect: "slideLeft",
  autoFocus: true
});
<div id="example-basic">
  <h3>Keyboard</h3>
  <section>
    <p>Try the keyboard navigation by clicking arrow left or right!</p>
  </section>
  <h3>Effects</h3>
  <section>
    <p>Wonderful transition effects.</p>
  </section>
  <h3>Pager</h3>
  <section>
    <p>The next and previous buttons help you to navigate through your content.</p>
  </section>
</div>
236 questions
0
votes
1 answer

Trigger is not working on jquery-steps?

plugin which I used is http://www.jquery-steps.com/Examples#advanced-form (you can look at clicking by code to see) and I want to make custom button or trigger but my trigger function is not working on this plugin why that ? my jquery codes …
ani_css
  • 2,118
  • 3
  • 30
  • 73
0
votes
1 answer

how to customize jquery-steps?

I'm using this jquery plugin; https://github.com/rstaib/jquery-steps and I want to create my own next and previous button inside my container or another place . plugin has documentation page https://github.com/rstaib/jquery-steps/wiki but I couldn't…
ani_css
  • 2,118
  • 3
  • 30
  • 73
0
votes
1 answer

Jquery validate always return true

I have an jquery step wizard, inside of them exists two form. When pass to the next step i try validate the first form with valid() method, but jquery validate always return true. Here is the…
Figa17
  • 781
  • 7
  • 20
0
votes
2 answers

jquery-steps : disable submit button when form are submited

I'm using jquery-steps.js , I want to disable submit button when some one click on submit, and never activate it until the the form is submitted. The reason way is that if some one click on submit many time the I receive many mails! Note : my HTML…
Marvos
  • 15
  • 8
0
votes
0 answers

How to prevent multi form substitution

I have a form based on jquery-steps a PHP page to process the form submission. The problem is that PHP file is too large and it need a lot of time to process ( API file are connected ) so some time my visitor click many time on the submit…
Marvos
  • 15
  • 8
0
votes
1 answer

Jquery Steps Wizard breaks meteor reactivity

I am using JQuery steps with Meteor and for some reason the steps dont get re-rendered when the data in the page gets updated hence breaking the reactivity. I have followed the steps as suggested in this post JQuery and Reactive Meteor…
0
votes
1 answer

How to disable next button in jquery steps plugin

I am using Jquery Steps plugin version 1.1.0. Can any experts in the forum help on how to disable next button on moving from step1 to step2. I have tried dooing this in function onStepChanged if currentIndex is 1.I am working with Meteor. $theSteps…
0
votes
1 answer

Bootstrap fields on same line

Does anyone know why my "termination Date" field is not going on the same line as Date Hired? When I am following the same rules as all the fields above?

Employee

Employee Information

David Brierton
  • 6,977
  • 12
  • 47
  • 104
0
votes
1 answer

JQuery-steps Form Validation Plugin not validating

I am struggling with implementing the form validation for the Jquery-Steps plugin. I am trying to implement the form validation in it's simplest form at this point, whereas it just validates inputs that have the "required" attribute. When I put a…
Brian Fleishman
  • 1,237
  • 3
  • 21
  • 43
0
votes
1 answer

Knockout.js click not firing inside of jQuery Steps Plugin

I am using the jQuery Steps plugin to create a wizard and on step two, you will add 1..* fields, which is an array of JSON objects that'll get posted to the server. I'm trying to use Knockout to show an input for each field name. On click, a new…
Elliott
  • 2,035
  • 20
  • 23
0
votes
1 answer

How to update a label text based on what a user types in a textbox

I'm using JQuery Steps and I'm trying to make the last step verify what the user has put in throughout the previous steps. But the problem is that its not populating the labels with the values of the previous text boxes. This is really confusing me…
NeoSketo
  • 525
  • 1
  • 7
  • 26
0
votes
0 answers

Table cell's all same height

I have following code, generated from jQuery steps plugin:
Matt Backslash
  • 764
  • 1
  • 8
  • 20
0
votes
1 answer

Jquery Steps doing nothing

I`m trying to use Jquery-Steps but this doesnt even like is working or loaded, it only shows the h1 and div blocks, only the html is been loaded Here is the code that I took from them, I dont know if I need to do something else. …
0
votes
0 answers

form.validate is not a function error when using jquery-validation

I am trying to use jquery validate and I am getting the following error: Uncaught TypeError: form.validate is not a function Here is the order that my scripts are being referenced when I load the site since the first thing to be assumed is that I…
0
votes
1 answer

Jquery steps + async call making server call every time on step changes

I am using Jquery stpes plugin for wizard. Here I have one problem, On step 2 I am making ajax call to get the data and filling into input controls but the problem here is data is refreshing everytime on step changes. so state is not maintain. I…
user3683342
  • 43
  • 1
  • 6