10. Trinidad Core Tag Reference
Contents > Trinidad Core Tag Reference > tr:selectItem
tr:selectItem |
|
The tr:selectItem tag is a child item that is used in a list, choice, radio or shuttle tag.
Example
<tr:selectItem label="Select" value="0" />
HTML Output
<option value="0">Select</option>
|
Tag Attributes
| attributeChangeListener |
Text |
| |
| The attributeChangeListener attribute contains the reference to a method that is invoked when the renderer changes a property without the application’s request. |
| binding |
Expression |
| |
| The value-binding expression linking this component tag to a backing bean property. |
| disabled |
Boolean |
| |
| The disabled attribute is a boolean flag that when set to true indicates that this component should not receive focus or be included in a form submit. |
| id |
Text |
| |
| The unique identifier value for this component. The value must be unique within the closest naming container. |
| label |
Text |
| |
| The label attribute sets the text that is displayed before the component. |
| longDesc |
Text |
| |
| The longDesc attribute sets the description text. Used in selectManyShuttle and selectOrderShuttle tags only. |
| rendered |
Boolean |
| |
| A value-binding expression that evaluates to a Boolean condition indicating if this component should be rendered. |
| shortDesc |
Text |
| |
| The shortDesc attribute displays help text you hover over the component. |
| value |
Text |
| |
| The value attribute sets the current value for this component. |
|