Oracle9iAS Portal Developer Kit

render_portlet_bottom procedure

Contained in package wwui_api_portlet.

Call this proceure to draw the bottom (or footer) of a portlet. The portlet Show method can call this procedure when the page calls portlet.show.

Note: Use this procedure with PDK-Java (JPDK) v2 and later.

procedure render_portlet_bottom
(
  p_portlet_record in wwpro_api_provider.portlet_runtime_record,
  p_title in varchar2 default null,
  p_show_details in boolean default false,
  p_show_edit in boolean default false,
  p_show_help in boolean default false,
  p_show_about in boolean default false
);

Version: Oracle Portal 9.0.2 or later

Parameters:

p_portlet_record

The portlet_runtime_record that was passed to the Show method of the portlet.

Datatype: in wwpro_api_provider.portlet_runtime_record

p_title

The portlet title.

Datatype: in varchar2
Default: null

p_show_details

Whether the portlet displays a Details link.

Datatype: in boolean
Default: FALSE

p_show_edit

Whether the portlet displays a Customize link.

Datatype: in boolean
Default: FALSE

p_show_help

Whether the portlet displays a Help link.

Datatype: in boolean
Default: FALSE

p_show_about

Whether the portlet displays an About link.

Datatype: in boolean
Default: FALSE

Exceptions:

This procedure does not raise any exceptions.

Example:

-- Render the bottom of the portlet (Close the portlet)
wwui_api_portlet.render_portlet_bottom(
  p_portlet_record => p_portlet_record,   --- pass the portlet record as is
  p_title => 'My Portlet Title'   --- title of portlet
  p_show_details => false,   --- don't display details link
  p_show_edit => true,     --- display customize link
  p_show_help => true,     --- display help link
  p_show_about => true     --- display about link
);

Related topics

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