wizard-previous tag
This tag renders the 'previous dialog' button of a wizard. For client-side validation, provide your validation function in the validate attribute. Your function must return true or false and take a single parameter, the form object.
Attribute |
Notes |
title
|
|
out-class
|
|
over-class
|
|
value
|
required for button; optional for link. If type is link and value is omitted then tag body is wrapped into link
|
style
|
|
class
|
|
id
|
|
ignore
|
if true and there is no previous dialog the button is not drawn.
|
validate
|
|
type
|
|
Sample:
<table>
<tr>
<td colspan="2">
<c:wizard/>
</td>
</tr>
<tr>
<td><c:wizard-previous value="Previous" class="wizButton"/></td>
<td><c:wizard-next value="Next" class="wizButton"/></td>
</tr>
</table>