Wizards for Vaadin
Simple way to create multi-step wizards
Wizards for Vaadin add-on provides a simple way to create multi-step wizards for Vaadin applications.
Sample code
// instantiate the Wizard Wizard wizard = new Wizard(); // add some steps that implement the WizardStep interface wizard.addStep(new FirstStep()); wizard.addStep(new SecondStep()); wizard.addStep(new ThirdStep()); wizard.addStep(new FourthStep()); // add the wizard to a layout mainLayout.addComponent(wizard);
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Fixed an issue with wrapping step captions in the default progress bar. Renamed Wizard.isCurrentStep method to Wizard.isActive. Added Wizard.setHeader(Component) method to provide the header instead of always using the default progress bar. Removed WizardCompletedListener in favor of a more generic WizardProgressListener. Added more Javadocs. Updated demo application accordingly.
- Released
- 2011-09-15
- Maturity
- EXPERIMENTAL
- License
- Apache License 2.0
Compatibility
- Framework
- Vaadin 6.5+
- Vaadin 6.3+ in 0.3.0
- Vaadin 7.0+ in 1.0.0-beta1
- Vaadin 7.1+ in 1.1.0
- Vaadin 8.0+ in 2.0.0
- Browser
- Internet Explorer
- Internet Explorer
- Internet Explorer
- Firefox
- Safari
- Google Chrome
- Internet Explorer
Vaadin Add-on Directory
Find open-source widgets, add-ons, themes, and integrations for your Vaadin application.
The channel for finding, promoting, and distributing Vaadin add-ons.