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 |
Expression |
| |
| The value-binding expression linking this component tag to a backing bean property. |
| for |
Text |
| 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 |
Text |
| |
| The unique identifier value for this component. The value must be unique within the closest naming container. |
| itemDescription |
Text |
| |
| The itemDescription attribute defines the textual description of the items rendered by this component. |
| itemDisabled |
Boolean |
| |
| 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 |
Text |
| |
| The itemLabel attribute defines the text label displayed to the user by this component. |
| itemValue |
Text |
| |
| The itemValue attribute defines the value associated with this component. |
| value |
Text |
| |
| The value attribute sets the current value for this component. |
|