<sas:CellContentsTextEntryEditor>

Used to set the CellContentsTextEntryEditor on a TableView cell's CellEditor. This class will render the cell's contents as a TextEntry.

This tag must be nested within a sas:CellEditor tag.

Syntax

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

Attributes

accessKeyThe shortcut to apply to the Form control.
customAttributesa list of attributes in the form of attribute="value", space delimited
enabledThe state of the TextEntry element; "false" results in a disabled textentry.
epilogText that is output immediately after the last markup tag.
idCase-sensitive name used to identify the object instance.
localeSpecifies the locale to use for this instance of the class.
maximumLengthThe maximum length of the TextEntry field.
nameValue assigned to the markup tag's name attribute.
objectDataPropertyValue assigned to the output tag's objectDataProperty attribute.
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
prologText that is output immediately preceeding the first markup tag.
readOnlyThe state of the TextEntry element; "true" results in a read only textentry.
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.tableview.html.CellContentsTextEntryEditor.

If you need to subclass the tag handler class for the sas:CellContentsTextEntryEditor tag, extend com.sas.taglib.servlet.tbeans.tableview.CellContentsTextEntryEditorTag.