<sas-f:TextArea>
Generates the appropriate HTML 4.0/XHTML 1.0 INPUT tag attributes to represent a TextArea input field.
Syntax
<sas-f:TextArea
[accessKey="java.lang.String"]
[columns="java.lang.String"]
[customAttributes="java.lang.String"]
[enabled="false|true"]
[epilog="java.lang.String"]
[id="value"]
[instantiate="true|false"]
[locale="java.util.Locale"]
[name="java.lang.String"]
[objectDataProperty="java.lang.String"]
[onBlur="java.lang.String"]
[onChange="java.lang.String"]
[onClick="java.lang.String"]
[onDblClick="java.lang.String"]
[onFocus="java.lang.String"]
[onKeyDown="java.lang.String"]
[onKeyPress="java.lang.String"]
[onKeyUp="java.lang.String"]
[onMouseDown="java.lang.String"]
[onMouseMove="java.lang.String"]
[onMouseOut="java.lang.String"]
[onMouseOver="java.lang.String"]
[onMouseUp="java.lang.String"]
[onSelect="java.lang.String"]
[prolog="java.lang.String"]
[readOnly="false|true"]
[ref="java.lang.String"]
[render="true|false"]
[rows="java.lang.String"]
[scope="page|request|session|application"]
[styleClassPrefix="java.lang.String"]
[tabIndex="java.lang.String"]
[text="java.lang.String"]
[wrap="java.lang.String"]>
[<sas-f:StyleInfo .../>]
[<sas-f:RequiredStringValidator/>]
[<sas-f:MaximumLengthValidator/>]
[<sas-f:SetProperty ...>
The value to set on the parent tag
</sas-f:SetProperty>]
[Additional <sas-f:SetProperty> tags...]
</sas-f:TextArea>
Attributes
accessKey | The shortcut to apply to the Form control. |
|---|---|
columns | The number of columns in the TextArea. |
customAttributes | |
enabled | The state of the TextArea element; "false" results in a disabled textarea. |
epilog | |
id | Case-sensitive name used to identify the object instance. |
instantiate | Flag that, if true, indicates that a new instance of the underlying class should be loaded if one cannot be found in PageContext. Must be used with an id attribute. |
locale | |
name | |
objectDataProperty | |
onBlur | The onBlur event handler to apply to the Form control. |
onChange | The onChange event handler to apply to the Form control. |
onClick | The onClick |
onDblClick | The onDblClick |
onFocus | The onFocus event handler to apply to the Form control. |
onKeyDown | The onKeyDown |
onKeyPress | The onKeyPress |
onKeyUp | The onKeyUp |
onMouseDown | The onMouseDown |
onMouseMove | The onMouseMove value |
onMouseOut | The onMouseOut event handler to apply to the Form control. |
onMouseOver | The onMouseOver event handler to apply to the Form control. |
onMouseUp | The onMouseUp |
onSelect | The onSelect |
prolog | |
readOnly | The state of the TextArea element; "true" results in a read only textarea. |
ref | The variable String value that represents an object created earlier in the same scope. |
render | |
rows | The visible number of text lines. |
scope | The scope (or page context) within which the reference is available. |
styleClassPrefix | The styleClassPrefix |
tabIndex | The tabindex to apply to the Form control. |
text | The text of the TextArea |
wrap | Specifies whether or not lines wrap to the next line. |
More Information
To view the documentation for the related TransformationBean, see com.sas.servlet.tbeans.form.BaseTextArea.
If you need to subclass the tag handler class for the sas-f:TextArea tag, extend com.sas.taglib.servlet.tbeans.form.TextAreaTag.