Tutorial: 0 - Introduction
The GWT-Wizard tutorial will guide you in creating a new project and implementing a wizard with GWT-Wizard. By the end of the tutorial, we will have covered the following topics:
- Creating a new project and installing GWT-Wizard
- Creating a
WizardContextfor wizard specific data - Creating wizard pages using MVP techniques
- Controlling wizard flow with
WizardPagehooks and page links - Improving wizard performance with lazy page loading and
GWT.runAsync - Providing your own custom view for the wizard
Our Wizard
We will be designing a wizard for a fake web site with some sort of subscription plan. The wizard will guide the user through creating a new account and choosing a plan. Our wizard will have the following pages and logic:
- Welcome page
- User and subscription information
- Free plan information
- Deluxe plan information
- Confirmation
In step two, the user will choose which subscription plan they wish to use. If the user chooses the free plan, the wizard will continue to page three and then skip page four; if the user choose the deluxe plan, the wizard will skip page three and display page four instead.
<< Home | Tutorial: 1 – Getting Started >>