Blog / People and Culture Blog
To Set Dynamically Normal/Dialogue Page Title in Oracle Apex
1. Overview
This document explains how to set dialogue page title dynamically.
2. Technologies and Tools Used
The following technologies have been used to set page title dynamically.
- Oracle Apex
- JavaScript
3. Use Case
Assume that there is a requirement to set dialogue page title dynamically.
4. Architecture
- First create a page item example, P1_TITLE.
- Create a dynamic action as below
Event : Page Load
True Action : Execute JavaScript
Fire on Initialization : Yes
Code : Use the below code
apex.util.getTopApex().jQuery(“.ui-dialog-content”).dialog(“option”, “title”, “&P1_TITLE.”);

5. Screenshot

