10. Tomahawk Tag Reference
Contents > Tomahawk Tag Reference > t:checkbox
t:checkbox |
|
The t:checkbox tag renders an HTML "checkbox". It must have an associated selectManyCheckbox tag referenced by the "for" attribute. The HTML values for this tag are taken from the referenced selectManyCheckBox tag.
Example:
<t:checkbox></t:checkbox>
|
Tag Attributes
| binding |
String |
| |
| The value-binding expression linking this component tag to a backing bean property. |
| enabledOnUserRole |
String |
| |
| The enabledOnUserRole attribute determines if this component will be rendered normally or not depending on the user's roles. |
| 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. |
| index |
String |
| Required |
| The index attribute specifies the numeric index of this component. |
| rendered |
String |
| |
| A value-binding expression that evaluates to a Boolean condition indicating if this component should be rendered. |
| visibleOnUserRole |
String |
| |
| The visibleOnUserRole attribute determines if this component will be visible or not depending on the user's roles. |
|