Wizard flow controller attributes in the web UI framework
There are many flow controller attributes, some of which include, id, independentPages, and finishImpl.
The following table shows the flow controller attributes to specify in the wizard tag of your XML file when you create a wizard:
| Attribute | Description | Constraints |
|---|---|---|
| id | The ID of the transition. | Should be unique within the webapp. |
| flowController | The fully qualified class name of the flow controller. | If the attribute is empty or does not exist, the controller provided by the framework will be defaulted. |
| independentPages |
Indicates if the wizard pages are independent of each other (true or false). If this is set to false, when a previous page is shown, all pages until the requested page are discarded. Data for the discarded pages is lost. However, you can set up an event that saves the discarded pages. |
Defaults to false. |
| finishImpl | A URL which handles the wizard's save action. |