Attributes |
Name | Required | Request-time | Type | Description |
binding | no | false | javax.el.ValueExpression | Using an EL expression, bind the component reference to a bean property, so that the component may be accessed in the bean. |
converter | no | false | javax.faces.convert.Converter | Converter is an interface describing a Java class that can perform Object-to-String and String-to-Object conversions between model data objects and a String representation of those objects that is suitable for rendering. |
converterMessage | no | false | java.lang.String | If present, will be used as the text of the converter message, replacing any message that comes from the converter. |
customConfigPath | no | false | java.lang.String | This attribute defines the path of the custom config file, the path is relative to the web app. |
disabled | no | false | boolean | Boolean value to disable and re-enable the component. Default = 'false'. |
height | no | false | java.lang.String | The height of the editor. It can be expressed in the following units: px, em, %. If no unit is specified, the value is assumed to be in pixels. Default = '100%'. |
id | no | 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 | no | false | boolean | A flag indicating that conversion and validation of this component's value should occur during Apply Request Values phase instead of Process Validations phase. Default = 'false'. |
language | no | false | java.lang.String | Specifies the language to be used for the user interface. Default = 'en'. |
rendered | no | false | boolean | Return true if this component (and its children) should be rendered during the Render Response phase of the request processing lifecycle. Default = 'true'. |
required | no | false | boolean | A flag indicating whether the user required to provide a non-empty submitted value for this component. Default = 'false'. |
requiredMessage | no | false | java.lang.String | If present, will be used as the text of the validation message for the "required" facility, if the "required" facility is used. |
saveOnSubmit | no | false | boolean | By default the data of the editor will only be saved when its 'Save' button is clicked. Any other submit request will not save its data. In order to save its data on any submit request like inputText does, this attribute can be set to true. Default = 'false'. |
skin | no | false | java.lang.String | Specify the pre-defined skin for the editor. Possible values are 'v2', 'office2003', and 'kama' ('default' is synonymous of 'v2'). Default = 'default'. |
style | no | false | java.lang.String | Inline CSS styling for the editor. |
styleClass | no | false | java.lang.String | The CSS style class of the editor. |
toolbar | no | false | java.lang.String | Specifies the type of toolbar. There are two valid values for this field (case sensitive): 'Default' and 'Basic'. Default = 'Default'. |
validator | no | false | javax.el.MethodExpression | MethodExpression 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. |
validatorMessage | no | false | java.lang.String | If present, will be used as the text of the validator message, replacing any message that comes from the validator. |
value | no | false | java.lang.Object | The current value of the simple component. The value to be rendered. |
valueChangeListener | no | false | javax.el.MethodExpression | MethodExpression 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, or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing what the new value is, but this can be useful in cases where a notification is needed that "this value changed". |
width | no | false | java.lang.String | The width of the editor. It can be expressed in the following units: px, em, %. If no unit is specified, the value is assumed to be in pixels. Default = '100%'. |