Tags

tags: wizard - wizardStep

wizard

The Wizard tag display a wizard with steps (see below), previous, next, cancel and finish buttons.

Simple example

<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

Attributes

Attribute NameDescription
previousKey, nextKey, cancelKey, finishKeyKeys of the message to use for the buttons title
bundleName of the bundle to use to retrive the item labels
previousReqCode, nextReqCode, cancelReqCode, finishReqCodreqCode for previous, next, cancel and finish actions [EL]
previousEnabled, nextEnabled, cancelEnabled, finishEnabledEnables the previous, next, cancel and finish buttons [EL]
modelName of the renderer
currentStepPropertyProperty of the Form containing the current step (type of the property is Double)

wizardStep

The wizard step represents a step in a wizard.

Additional attributes:

Attribute NameDescription
keyKey of the message to use as the step title
arg0, arg1, arg2, arg3, arg4Optional parametric replacement values. [EL ]
bundleName of the bundle to use to retrive the item labels