[Image] EchoPoint
Helping you build truly dynamic and stateful web applications!
nothing

WizardPane   Click here for complete JavaDoc

The WizardPane component provides a framework for creating step through wizards. 

Each component within the WizardPane is presented one at a time in the specified order.  Each has a title, footer and the content to be shown.

You can register a WizardNavigationListener with the WizardPane and it will be informed when the user is about to move off the current component.  The application is then able to decide whether this is allowed, and if not it can throw a WizardNaviationVetoException to stop further navigation. 

This is useful for validation of a component before moving on to the next one.

You can also decide to skip a pane within the wizard by setting the selected index from within WizardNavigationListener code.

[Image]

 

 

 

WizardPane wp = new WizardPane();
pane.add(wp);
wp.setBackground(Color.WHITE);
int i = -1;
wp.add("Pane " + ++i, createWizardContent(i));
wp.add("Pane " + ++i, createWizardContent(i));

Client Browser Support :

All clients supported by the Echo Framework.


Home

SourceForge Logo

The EchoPoint project is kindly hosted by SourceForge