Home » OrclApex » Oracle Apex: Reload/Refresh Page Using JavaScript

Oracle Apex: Reload/Refresh Page Using JavaScript

Sometimes it is required to refresh the whole page instead of refreshing a particular region. In this tutorial, I will show you how to reload/refresh the page using JavaScript in Oracle Apex.

To do this on or after a particular event, surely we need to create a dynamic action to execute JavaScript code.

Create a Dynamic Action to Execute JavaScript Code

As per your need, you can create a dynamic action on a button click or after a dialog window closed, etc. Create a dynamic action for any event and set its type to Execute JavaScript Code and put the following JavaScript code in it:

location.reload();

Below is the screenshot for your reference:

Reload page using JavaScript in Oracle Apex.

Save the changes and you are good to go.

Check more about JavaScript location.reload() function on Mozilla Developer's Network.

Related Tutorial:

Oracle Apex: Calculate Field Values Using JavaScript