Attributes |
Name | Required | Request-time | Type | Description |
value | false | false | java.lang.String |
The editable HTML displayed inside the textarea.
|
cols | false | false | java.lang.String |
Number of columns in the textarea (in character units). Defaults to 80.
Complements the the 'width' attribute. Passes through to the HTML textarea element.
|
rows | false | false | java.lang.String |
Number of rows in the textarea (in character units). Defaults to 15.
Complements the 'height' attribute. Passes through to the HTML textarea element.
|
width | false | false | java.lang.String |
Width of the widget (in pixel units).
If this attribute is not specified, the width is controlled by the 'cols' attribute.
|
height | false | false | java.lang.String |
Height of the widget (in pixel units).
If this attribute is not specified, the width is controlled by the 'rows' attribute.
|
textareaOnly | false | false | java.lang.String |
If true, only the textarea will be rendered. Defaults to false.
If true, the rich text toolbar
and external HTMLArea JavaScript will not be rendered. Attributes that
affect the textarea element will be rendered (for example style, styleClass).
This widget is then rendered as just a plain-old textarea.
|
buttonSet | false | false | java.lang.String |
Select toolbar from among a number precanned lists of command buttons.
Allowed values are: "none", "small", "medium", "large". (values tentative).
Defaults to "medium", which has 2 rows of buttons. For fine-grained
control of which buttons are shown, use the buttonList attribute
instead. "small" has 1 row
of buttons. "large" has 3 rows of buttons, almost everything available.
"none" has 0 rows of buttons, no buttons at all - The text is still editable;
Keyboard shortcuts for formatting (like Ctrl-B for bold) still work.
|
buttonList | false | false | java.lang.String |
Comma delimited list of toolbar command buttons registered with
component. If not specified, will default to a defined list.
|
javascriptLibraryExtensionURL | false | false | java.lang.String |
URL to an external JavaScript file with additional
JavaScript to execute beyond the default, for example
extra command button definitions. May be a relative URL.
Default is nothing.
|
javascriptLibraryURL | false | false | java.lang.String |
The URL to the directory of the HTMLArea JavaScript library.
This allows overriding the default HTMLArea JavaScript library
that comes with this component.
May be a relative URL.
|
showXPath | false | false | java.lang.String |
If true show XPath at bottom of editor. Default is true.
|
hideAble | false | false | java.lang.String |
Show sub control allowing you to hide editor.
Default is false.
|
autoConfig | false | false | java.lang.String |
___TODO: This is here for legacy purposes - is it really necessary anymore?___
Whether to recalculate the configuration - defaults to false. If true,
the width, height, and toolbar buttons will be recalculated based on
the values given.
|
binding | false | false | java.lang.String |
|
converter | false | false | java.lang.String |
Converter instance registered with this component.
|
id | false | false | java.lang.String |
The component identifier for this component. This value must be
unique within the closest parent component that is a naming
container.
|
immediate | false | false | java.lang.String |
Flag indicating that this component's value must be
converted and validated immediately (that is, during
Apply Request Values phase), rather than waiting
until Process Validations phase.
|
rendered | false | false | java.lang.String |
Flag indicating whether or not this component should be rendered
(during Render Response Phase), or processed on any subsequent
form submit.
|
required | false | false | java.lang.String |
Flag indicating that the user is required to provide a submitted
value for this input component.
|
validator | false | false | java.lang.String |
MethodBinding representing a validator method that will be called
during Process Validations to perform correctness checks on the
value of this component. The expression must evaluate to a public
method that takes FacesContext, UIComponent, and Object parameters,
with a return type of void.
|
value | false | false | java.lang.String |
The current value of this component.
|
valueChangeListener | false | false | java.lang.String |
MethodBinding representing a value change listener method that will be
notified when a new value has been set for this input component. The
expression must evaluate to a public method that takes a
ValueChangeEvent parameter, with a return type of void.
|
accesskey | false | false | java.lang.String |
Access key that, when pressed, transfers focus
to this element.
|
dir | false | false | java.lang.String |
Direction indication for text that does not inherit directionality.
Valid values are "LTR" (left-to-right) and "RTL" (right-to-left).
|
disabled | false | false | java.lang.String |
Flag indicating that this element must never
receive focus or be included in a subsequent
submit.
|
lang | false | false | java.lang.String |
Code describing the language used in the generated markup
for this component.
|
readonly | false | false | java.lang.String |
Flag indicating that this component will prohibit
changes by the user. The element may receive focus
unless it has also been disabled.
|
style | false | false | java.lang.String |
CSS style(s) to be applied to the underlying textarea when it is rendered.
|
styleClass | false | false | java.lang.String |
Space-separated list of CSS style class(es) to be applied when
the underlying textarea is rendered. This value must be passed through
as the "class" attribute on generated markup.
|
tabindex | false | false | java.lang.String |
Position of the underlying textarea element in the tabbing order
for the current document. This value must be
an integer between 0 and 32767.
|
title | false | false | java.lang.String |
Advisory title information about markup elements generated
for this component.
|
attachedFiles | false | false | java.lang.String |
A list of SelectItems or a Map of link to label strings that
will be rendered as a list on the editor.
|
collectionBase | false | false | java.lang.String |
Collection with in Content Hosting to use for any ContentHostingService
interactions with in the editor, such as the FCK file browser.
|