Changes for page WOText
Last modified by Pascal Robert on 2012/01/30 22:33
From version 7.1
edited by Pascal Robert
on 2011/04/26 23:03
on 2011/04/26 23:03
Change comment:
There is no comment for this version
To version 10.1
edited by Pascal Robert
on 2012/01/30 22:33
on 2012/01/30 22:33
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,16 +1,40 @@ 1 -{{toc }}{{/toc}}1 +{{toc/}} 2 2 3 3 = Introduction = 4 4 5 +WOText generates a multi-line field for text input and display. It corresponds to the HTML element <TEXTAREA>. 6 + 5 5 = Usage = 6 6 7 7 {{code}} 8 8 11 +WOText { 12 + value=defaultValue; 13 + [name=fieldName;] 14 + [disabled=aBoolean;] 15 + ... 16 +} 9 9 10 10 {{/code}} 11 11 12 12 = Bindings = 13 13 22 +|((( 23 +value 24 +)))|((( 25 +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. 26 +))) 27 +|((( 28 +name 29 +)))|((( 30 +The name that uniquely identifies this element within the form. You may specify a name or let WebObjects automatically assign one at runtime. 31 +))) 32 +|((( 33 +disabled 34 +)))|((( 35 +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. 36 +))) 37 + 14 14 = Examples = 15 15 16 16 == Java methods == ... ... @@ -17,16 +17,12 @@ 17 17 18 18 == WOD-style == 19 19 20 -{{code}} 44 +{{code/}} 21 21 22 - 23 -{{/code}} 24 - 25 25 == Inline bindings (WOOGNL) == 26 26 27 -{{code}} 48 +{{code/}} 28 28 29 - 30 -{{/code}} 31 - 32 32 = Related documents = 51 + 52 +[[ERXWOText>>url:http://wocommunity.org/documents/javadoc/wonder/latest/er/extensions/components/_private/ERXWOText.html||shape="rect"]]