Table of Contents Previous Section


WOForm

Synopsis

WOForm { [action=aMethod; | href=aURL;] [multipleSubmit=YES|NO;] ... };

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>.

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 YES, the form can have more than one WOSubmitButton, each with its own action. By default, WOForm supports only a single WOSubmitButton. Note: Some older browsers support only a single submit button in a form.

Examples

Forms and input elements

Table of Contents Next Section