Questions tagged [jwizard]

jQuery Plugin for generating a Windows Wizard-like interface for your Web Applications

jWizard can take your boring HTML forms and turn them into a Windows Wizard-like interface.

10 questions
5
votes
2 answers

Can I programmatically hide a step in jWizard?

I am using the jWizard jQuery plugin to implement a wizard in my application. Standing on my requirements I have a total of four steps in the wizard Choose configuration Configuration of A Configuration of B Summary page In the first step (Choose…
Lorenzo
  • 29,081
  • 49
  • 125
  • 222
1
vote
1 answer

Validating contents on Next button click in jWizard Framework

Here is my problem. I wanted to implement an "installation wizard" in Swing. I stumbled upon jWizard framework and I liked the look-and-feel of the wizard. Unfortunately, I have not been able to come up with a solution for validating the contents of…
Anand Sainath
  • 1,807
  • 3
  • 22
  • 48
1
vote
2 answers

Change the height of jWizard

Can I change the height of the jWizard jQuery plugin?
Lorenzo
  • 29,081
  • 49
  • 125
  • 222
1
vote
1 answer

Adding validations on jWizard before proceeding

The is the plugin: http://www.dbarnes.info/jWizard/ The initialization is as follows: mywizard = $("#wizard").jWizard({ menuEnable: true, counter: {enable: true}, effects: {enable: true}, buttons: { …
user1034774
0
votes
0 answers

JButton only appears when I pass the mouse over

public class Proof extends JWizardPanel{ String generatedString = ""; public Proof(JWizardComponents wizardComponents) { super(wizardComponents); init(); } private void init() { JButton btnNodo =…
0
votes
1 answer

jQuery jwizard plugin

looks like nextStep() method inside jquery.jwizard.js is being called when the user clicks on next button. Is it possible to call that method explicitly and pass some options so that I won't see cancel button in next screen? how can I? plz check…
Arjun
  • 6,501
  • 10
  • 32
  • 34
0
votes
2 answers

validate a subset of the input elements

I have started using jQuery Validation plugin 1.7. I have a wizard like interface that collect input for several view model classes. I am trying to validate every object showed in a step every time the user click on the NEXT/PREVIOUS button. My…
Lorenzo
  • 29,081
  • 49
  • 125
  • 222
0
votes
0 answers

How to enable finish button in JWizard plugin?

I'm showing forms dynamically and some forms comes with only 1 step. How can I enable finish button when I have only one step in JWizard plugin?
Kedin
  • 1
0
votes
1 answer

jQuery Jwizard get current step

I am using jQuery jWizard from here Thi is my initialization: jQuery("#jWizardResourceCreate").jWizard({ counter: { enable: true }, effects: { enable: true }, }); I have 4 steps :
user1361986
0
votes
1 answer

Once a jQuery object is initiated, how to access it after?

Once jQuery object has been created to an element, how can I access it? For instance, the following object is being created using the jWizard jQuery, but I need to call some functions on this object, but I have no idea where to start. Any help would…
user1034774