<sas-f:TextEntry>

Generates the appropriate HTML 4.0/XHTML 1.0 INPUT tag attributes to represent a text entry field.

Syntax

<sas-f:TextEntry
   [accessKey="java.lang.String"]
   [customAttributes="java.lang.String"]
   [enabled="false|true"]
   [epilog="java.lang.String"]
   [id="value"]
   [instantiate="true|false"]
   [locale="java.util.Locale"]
   [maximumLength="java.lang.String"]
   [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"]
   [scope="page|request|session|application"]
   [size="java.lang.String"]
   [styleClassPrefix="java.lang.String"]
   [tabIndex="java.lang.String"]
   [text="java.lang.String"]>
      [<sas-f:StyleInfo .../>]
      [<sas-f:DateStringValidator/>]
      [<sas-f:HexColorStringValidator/>]
      [<sas-f:IntegerInputValidator/>]
      [<sas-f:MaximumLengthValidator/>]
      [<sas-f:MaximumValueValidator/>]
      [<sas-f:MinimumValueValidator/>]
      [<sas-f:NumericInputValidator/>]
      [<sas-f:RequiredStringValidator/>]
      [<sas-f:CompositeValidator/>]
      [<sas-f:MaximumValueCompositeValidator/>]
      [<sas-f:MinimumValueCompositeValidator/>]
      [<sas-f:MinMaxValueCompositeValidator/>]
      [<sas-f:SetProperty ...>
         The value to set on the parent tag
      </sas-f:SetProperty>]
      [Additional <sas-f:SetProperty> tags...]
</sas-f:TextEntry>

Attributes

accessKeyThe shortcut to apply to the Form control.
customAttributes
enabledThe state of the TextEntry element; "false" results in a disabled textentry.
epilog
idCase-sensitive name used to identify the object instance.
instantiateFlag 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
maximumLengthThe maximum length of the TextEntry field.
name
objectDataProperty
onBlurThe onBlur event handler to apply to the Form control.
onChangeThe onChange event handler to apply to the Form control.
onClickThe onClick
onDblClickThe onDblClick
onFocusThe onFocus event handler to apply to the Form control.
onKeyDownThe onKeyDown
onKeyPressThe onKeyPress
onKeyUpThe onKeyUp
onMouseDownThe onMouseDown
onMouseMoveThe onMouseMove value
onMouseOutThe onMouseOut event handler to apply to the Form control.
onMouseOverThe onMouseOver event handler to apply to the Form control.
onMouseUpThe onMouseUp
onSelectThe onSelect
prolog
readOnlyThe state of the TextEntry element; "true" results in a read only textentry.
refThe variable String value that represents an object created earlier in the same scope.
render
scopeThe scope (or page context) within which the reference is available.
sizeThe size of the TextEntry field.
styleClassPrefixThe styleClassPrefix
tabIndexThe tabindex to apply to the Form control.
textThe text of the TextEntry field.

More Information

To view the documentation for the related TransformationBean, see com.sas.servlet.tbeans.form.BaseTextEntry.

If you need to subclass the tag handler class for the sas-f:TextEntry tag, extend com.sas.taglib.servlet.tbeans.form.TextEntryTag.