|
render_portlet_top procedure |
|
Contained in package wwui_api_portlet. Call this proceure to draw the top (or header) 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. It replaces the draw_portlet_header procedure used in earlier releases of Oracle Portal. procedure render_portlet_top |
|
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 |
|
p_show_details |
Whether the portlet displays a Details link. Datatype: in boolean |
|
p_show_edit |
Whether the portlet displays a Customize link. Datatype: in boolean |
|
p_show_help |
Whether the portlet displays a Help link. Datatype: in boolean |
|
p_show_about |
Whether the portlet displays an About link. Datatype: in boolean |
|
Exceptions: This procedure does not raise any exceptions. Example: -- Render the top of the portlet (Open the portlet) -- Render the content of your portlet (Only if portlet is
not collapsed) <Code to print out the content of your portlet> end if; |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |