| Attributes |
| Name | Required | Request-time | Type | Description |
| id | false | true | java.lang.String | A string specifying the identifier for this component. This value must be unique within the closest parent component that is a naming container. |
| binding | false | false | javax.el.ValueExpression
(must evaluate to javax.faces.component.UIComponent)
| The value binding expression linking this component to a property in a backing bean. |
| rendered | false | false | javax.el.ValueExpression
(must evaluate to boolean)
| A boolean value indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. |
| visible | false | false | javax.el.ValueExpression
(must evaluate to boolean)
| A boolean value indicating wether the composant is visible. |
| hiddenMode | false | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
| A string value specifying the management of invisible state on the client. Authorized values are : - server : if not visible, nothing is sent to the client
- phantom : if not visible, the data is sent to the client and the page estate is reserved for a futur eventual display of the component
- ignore : if not visible, the data is sent to the client but no page estate is reserved
|
| unlockedClientAttributeNames | false | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
| A string value holding a comma separated list of the client modifiable properties. |
| alternateText | false | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
| No Description |