Go back

Summary

Tag name: <dialog>

The dialog tag is rendered as a popup dialog.

Code Example(s)

      <dialog dialogListener="${lovDialogListener}" helpTopicId="f1_workitem_lov_html">
        <search model="${lovSearchModel}" enableSave="false" maxColumns="1" customizable="false">
          <table headerTitle="${res.SEARCH_RESULT}" value="${lovResultTableModel}" mouseListener="${lovMouseListener}"/>
        </search>
      </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.
xPositionint-1YPosition on the x-axis of the dialog when it is displayed. The dialog will be positoned by centerized xPostion of the screen if no value is set.
yPositionint-1YPosition on the y-axis of the dialog when it is displayed. The dialog will be positoned by centerized yPostion of the screen if no value is set.
titleStringYThe title of the dialog.
widthint500YThe width of the dialog.
heightint500YThe hight of the dialog.
dialogListenerjava.awt.event.ActionListenerEL OnlyAn ActionListener java class for the dialog. Please refer to Oracle Connector Developer Guide on how to write and use listeners when implementing a connector.