Go back

Summary

Tag name: <tab>

The tab tag defines a tab UI block. It is a child item of panelTabbed tag.

Code Example(s)

      <tab title="Relationships"
                  helpTopicId="f1_workitem_relationship_tab_htm">
        <table value="${linksmodel}" enableDrop="true"
               dropTransferHandler="${linkedItemTransferHandler}"
               mouseListener="${relationshipTableMouseListener}"
               id="wiRelationshipTable_id_0">
          <toolbar>
            <spacer/>
            <menuToolButton text="${res.ADD_RELATIONSHIP}"
                            value="${relationshipMenuToolButton}"
                            tableId="wiRelationshipTable_id_0"
                            icon="OracleIcons.ADD"/>
            <action text="${res.DELETE_RELATIONSHIP}"
                    actionCommand="delete" icon="OracleIcons.DELETE"
                    tableId="wiRelationshipTable_id_0"
                    actionListener="${workitemRelationshipListener}"/>
          </toolbar>
        </table>
      </tab>

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.
titleStringYThe title of the tab.