Oracle9iAS Portal Developer Kit

open_dialog procedure

Contained in package wwui_api_portlet_dialog.

Call this procedure to open a dialog.

procedure open_dialog
  (
  p_title in varchar2,
  p_sec_title in varchar2 default null,
  p_dialog_image in varchar2 default null,
  p_help_url in varchar2 default null,
  p_subheader_text in varchar2 default null,
  p_help_text in varchar2 default null,
  p_buttons in button_list,
  p_path_text in varchar2 default null,
  p_language in varchar2 default wwctx_api.get_nls_language,
  p_contenttable in boolean default true,
  p_width in varchar2 default null
  );

Version: Oracle Portal 3.0.8

Parameters:

p_title

Main title for the dialog.

Datatype: in varchar2

p_sec_title

Secondary title displayed below the main title.

Datatype: in varchar2

p_dialog_image

Image to be displayed below the title area.

Datatype: in varchar2

p_help_url

Valid URL for the Help icon (displayed on the title bar) .

Datatype: in varchar2

p_subheader_text

Subheader text displayed below the title bar and image.

Datatype: in varchar2

p_help_text

Help text (hint text) displayed below the subheader.

Datatype: in varchar2

p_buttons

List of button names and URL's to be displayed on the dialog.

Datatype: in button_list

p_path_text

The path to be displayed e.g: folder path.

Datatype: in varchar2

p_language

The language in which the strings are displayed.

Datatype: in varchar2

p_contenttable

Flag used to indicate to closeout the User content table.

Datatype: in boolean

p_width

Width of the table in which buttons are rendered.

Datatype: in varchar2

Exceptions:

This procedure does not raise any exceptions.

Example:

wwui_api_dialog.open_dialog
(
 p_title => 'Dialog',
 p_dialog_image => dialog.gif,
 p_help_url => 'javascript:show_context_sens_help()',
 p_subheader_text => 'SubHeader'
 p_help_text => 'This is the help text for dialog',
 p_buttons => l_button_list,
 p_path_text => 'Path:/Folder1/Folder2');
end;

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio