| 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. |
| scopeSaveValue | false | false | javax.el.ValueExpression
(must evaluate to boolean)
| No Description |
| scopeValue | false | false | javax.el.ValueExpression
(must evaluate to java.lang.Object)
| A string value specifying the binding associated to a variable representing a shortcut. (cf. scopeVar) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" |
| scopeVar | false | false | javax.el.ValueExpression
(must evaluate to java.lang.String)
| A string value specifying the name of a variable representing a shortcut to a binding. (cf. scopeValue) ex: if scopeVar "bat" is associated to scopeValue "bean.attribute1.attribute2" then the use of "bat.attribute3" will be equivalente to "bean.attribute1.attribute2.attribute3" |