10. Tomahawk Tag Reference
Contents > Tomahawk Tag Reference > t:aliasBean
t:aliasBean |
|
The t:aliasBean tag defines a surrogate object that stores a named value. You assign a literal or expression value to the aliasBean tag. The aliasBean object can then be re-used in forms and subviews throughout your JSF application.
Example:
<t:aliasBean alias="#{placeholderBean}" value="#{realBean.property}"></t:aliasBean>
|
Tag Attributes
| alias |
String |
| |
| The alias attribute takes a value-binding EL expression that identifies the target bean for the value of this tag. |
| binding |
String |
| |
| The value-binding expression linking this component tag to a backing bean property. |
| id |
String |
| |
| The unique identifier value for this component. The value must be unique within the closest naming container. |
| rendered |
String |
| |
| A value-binding expression that evaluates to a Boolean condition indicating if this component should be rendered. |
| value |
String |
| |
| The value attribute takes a value-binding EL expression that identifies the object or literal String value to assign to the alias. |
|