The Wizard tag display a wizard with steps (see below), previous, next, cancel and finish buttons.
<layout:wizard selectedTabKeyName="wizard1" width="650" styleClass="WizardContainer " nextReqCode="2" cancelReqCode="3" previousReqCode="1" finishReqCode="4"> <layout:wizardStep key="Etape 1"> </layout:wizardStep> <layout:wizardStep key="Etape 2" > <layout:panel model="fieldsValueTable" key="Informations personnelles" styleClass="LabelTextTitle"> <layout:text key="Email" property="email" styleId="email" mode="E,E,I" styleClass="LabelText" /> <layout:text key="Téléphone" property="telephone" styleId="tel" mode="E,E,I" styleClass="LabelText" /> <layout:text key="Fax" property="fax" styleId="fax" mode="E,E,I" styleClass="LabelText" /> <layout:text key="Téléphone mobile" property="mobile" styleId="mobile" mode="E,E,I" styleClass="LabelText" /> </layout:panel> </layout:wizardStep> <layout:wizardStep key="Etape 3"> <layout:panel styleClass="LabelTextTitle">Adresse </layout:panel> <layout:panel model="fieldsValueTable"> <layout:textarea key="Adresse" property="adress" value="13 avenue Paul Langevin - 92359 Le Plessis Robinson cedex" mode="E,E,I" styleClass="LabelText" /> <layout:text key="Site" property="site" value="PLESSIS ROBINSON" mode="E,E,I" styleClass="LabelText" /> </layout:panel> </layout:wizardStep> <layout:wizardStep key="Etape 4"> </layout:wizardStep> <layout:wizardStep key="Etape 5"> </layout:wizardStep> <layout:wizardStep key="Etape 6"> </layout:wizardStep> </layout:wizard>
Result

| Attribute Name | Description |
|---|---|
| previousKey, nextKey, cancelKey, finishKey | Keys of the message to use for the buttons title |
| bundle | Name of the bundle to use to retrive the item labels |
| previousReqCode, nextReqCode, cancelReqCode, finishReqCod | reqCode for previous, next, cancel and finish actions [EL] |
| previousEnabled, nextEnabled, cancelEnabled, finishEnabled | Enables the previous, next, cancel and finish buttons [EL] |
| model | Name of the renderer |
| currentStepProperty | Property of the Form containing the current step (type of the property is Double) |