Oracle Fusion Middleware Tag Reference for Oracle Team Productivity Center Connectors
12c (12.1.2)
E23195-01
Oracle Team Productivity Center UI tag --<comboBoxAction>
Go back

Summary

Tag name: <comboBoxAction>

The comboBoxAction tag is used to render a comboBoxAction UI control.

Code Example(s)

<comboBoxAction label="#{workitemmodel.labels.REGRESSION_STATUS}"
          value="#{workitemmodel.values.REGRESSION_STATUS}"
          valueSet="#{workitemmodel.listItems.REGRESSION_STATUS"
          required="#{workitemmodel.required.REGRESSION_STATUS"
          popupMenuListener="#{regressionBean.popupMenuListener}"
          actionListener="#{regressionBean.actionListener}"/>

Attributes

Name Type Default value Required? Supports EL? Description
idStringYIt is the identifier for the component defined. The id is unique inside its grouping parent scope.
tagNameStringYThe tag name.
disabledbooleanfalseYIndicates whether the tag will be rendered as disabled or not. Valid values are true or false. The control will show as grayed out without reacting to any user input or action if the value is set to true.
shortDescStringYThe content will show as a tooltip information when mouseover its UI when the value is set.
visiblebooleantrueYIndicates if the UI block of the tag will be rendered as visible or not. Valid values are true or false. The component will not be rendered but the corresponding component will still be created and kept in the runtime component tree if the value is set to false.
mouseListenerjava.awt.event.MouseListenerEL onlyA MouseListener java class for the rendered UI component. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
keyListenerjava.awt.event.KeyListenerEL onlyA KeyListener java class for the rendered UI component. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
focusListenerjava.awt.event.FocusListenerEL onlyA FocusListener java class for the rendered UI component. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
PropertyChangeListenerjava.beans.PropertyChangeListenerEL OnlyA PropertyChangeListener java class for the rendered UI component. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
helpTopicIdStringYHelp topic ID that associate the help content with the current tag. For example -- when the connector integrates its help with Oracle Help center: This id will be used to identify the help HTML page inside connector help jar file and show the page in Oracle Help Center when the UI component has focus and F1 key is pressed.
labelStringYA short string that briefly describes the purpose of the component.
valueObjectYThe assigned or computed quantity of the component.
readOnlybooleanfalseYIndicates if the rendered UI block of the current tag should be readOnly or not. Valid values are true and false. The UI block is not editable if the value is sete.
requiredbooleanfalseYIndicates if the value needs to be specified when user tries to save the work item. Valid values are true and false. The UI block is rendered with a (*) after the component label. Data validation is triggered during data submission if the value is set to true.
simplebooleanfalseYThe UI block for the tag component will be rendered without label if the value is true. Valid values are true and false.
validatororacle.alm.view.uicomponents.AlmValidatorEL OnlyAn Oracle AlmValidator class that is used to validate the value specified.
pprTargetsString[]EL OnlyAs a support for partial page refresh. It indicates the UI components need to be refreshed when the value for the current tag componet is changed. Its value is a comma separated string that contains the IDs of other tag components defined on the same page.
valueSetjava.lang.ObjectYEL OnlyProvides the value set for the current tag.
valueOrderjava.lang.EnumYEL OnlyDecide the display value's order in the list poup. Value value is "NONE" "ASC" "DESC"
itemListenerjava.awt.event.ItemListenerEL OnlyAn ItemListener java class for the rendered combobox component. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
popupMenuListenerjavax.swing.event.PopupMenuListenerEL OnlyAn PopupMenuListener java class for the rendered combobox component. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
hintStringYUsed by comboBox control and its content is displayed as watermark in its initial state. Clicking or typing inside the control will make the hint text disppear.
emptyEntryValuejava.lang.ObjectYThe value that represents an empty entry in the comboBox. Usually the empty entry is rendered as the first entry in the comboBox drop down.
enableEmptyEntrybooleantrueYIndicate if empty entry is enabled for the comboBox. Valid values are true and false. The empty entry shows as the first element in the comboBox dropdown if it is set to true.
actionListenerjava.awt.event.ActionListenerEL OnlyAn actionListener java class for the rendered comboboxAction component. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
actionIconStringEL OnlyAn icon of the action button for the rendered comboboxAction component.