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:
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
- window.onload is not a function Error
Hi Dear,
please guide me, how can i select first record automatically on page load in side by side master detail form???
I have a graph and I want to refresh that graph region based on selection (list item).How can I do that without completely refresh the entire page. I want to only update this region.
any update ?