10. Tomahawk Tag Reference
Contents > Tomahawk Tag Reference > t:treeCheckbox
t:treeCheckbox |
|
The t:treeCheckbox tag generates an HTML checkbox that can be used inside a tree node. It is associated with a particular f:selectItem component through the "for" attribtue. The selectItem must be contained by a t:selectManyCheckbox tag.
Example:
<t:treeCheckbox></t:treeCheckbox>
|
Tag Attributes
| binding |
String |
| |
| The value-binding expression linking this component tag to a backing bean property. |
| for |
String |
| Required |
| The for attribute is the id of the component this component extends or is part of. This attribute is required by some tags. |
| id |
String |
| |
| The unique identifier value for this component. The value must be unique within the closest naming container. |
| itemDescription |
String |
| |
| The itemDescription attribute defines the textual description of the items rendered by this component. |
| itemDisabled |
String |
| |
| The itemDisabled attribute expects a boolean value that, when true, causes this component to be excluded from UI component state saving during the JSF request processing lifecycle. |
| itemLabel |
String |
| |
| The itemLabel attribute defines the text label displayed to the user by this component. |
| itemValue |
String |
| |
| The itemValue attribute defines the value associated with this component. |
| rendered |
String |
| |
| A value-binding expression that evaluates to a Boolean condition indicating if this component should be rendered. |
| value |
String |
| |
| The value attribute sets the current value for this component. |
|