WOText

Version 4.1 by Pascal Robert on 2011/05/08 02:18

Introduction

WOText generates a multi-line field for text input and display. It corresponds to the HTML element <TEXTAREA>.

Usage


WOText {
  value=defaultValue;
  [name=fieldName;]
  [disabled=aBoolean;]
  ...
}

Bindings

 value During page generation, value specifies the text that is displayed in the text field. During request handling, value contains the text as the user left it. 
 name  The name that uniquely identifies this element within the form. You may specify a name or let WebObjects automatically assign one at runtime. 
 disabled  If disabled evaluates to true, the text area appears in the page but is not active. That is, value does not contain the user's input when the page is submitted. 

Examples

Java methods

WOD-style


Inline bindings (WOOGNL)


Related documents

ERXWOText