Oracle Fusion Middleware Tag Reference for Oracle Team Productivity Center Connectors
11g Release 2 (11.1.2.4.0)
E17495-05
Go back

Summary

Tag name: <dialogButton>

The dialogButton tag is used to render a UI action source. It can be a button/a toggleButton/a link in the dialog footer area.

Code Example(s)

      <dialog dialogListener="${lovDialogListener}" helpTopicId="f1_workitem_lov_html">
        <dialogButton id="ctxt_saveId" text="${res.SAVE_CONTEXT}"
                      actionCommand="savecontext" icon="TeamIcons.SAVECONTEXT"
                      actionListener="${savecontext}"/>
      </dialog>

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.
actionListenerjava.awt.event.ActionListenerEL onlyAn ActionListener java class for the dialog button. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.
renderTypeStringbuttonYIndicates whether the action tag will be rendered as a link or a button.validate values are "BUTTON" "LINK" "TOGGLEBUTTON".
textStringYThe text on the rendered UI of the action tag.
iconStringYThe icon source on the rendered UI of the action tag. The action will be rendered as an icon button if a valid value is set.
actionCommandStringYThe acitons that can be performed on the button. This attribute is used by the actionListener to identify the command source.