How to dynamically change an Oracle Apex modal dialog’s title

You can change a modal dialog’s title calling the following javascript code:

apex.util.getTopApex().jQuery(“.ui-dialog-content”).dialog(“option”, “title”, ‘New title ‘ + $v(‘PNN_ITEM’));

 Tested on Oracle Apex 5.1.

Leave a comment