Element Description
A WOForm is a container element that generates a fill-in form.
It gathers the input from the input elements it contains and sends
it to the server for processing. WOForm corresponds to the HTML element <FORM
... > ... </FORM>
.
Synopsis
WOForm { [action=aMethod;
| href=aURL;] [multipleSubmit=aBoolean;]
... };
Bindings
- href
- URL specifying where the form will be submitted.
- action
- Action method that's invoked when the form is submitted.
If the form contains a dynamic element that has its own action (such
as a WOSubmitButton or a WOActiveImage), that action is invoked
instead of the WOForm's.
- multipleSubmit
- If multipleSubmit evaluates
to
true
(or YES
),
the form can have more than one WOSubmitButton, each with its own
action. By default, WOForm supports only a single WOSubmitButton.
Some older browsers support only a single
submit button in a form. |