Integrating Web History JavaScript API’s with Oracle Apex

1. Overview

This Document is used to implement Incremental search on Interactive report and Interactive grid

2. Technologies and Tools Used

The following technologies have been used to achieve this

 

  • Oracle APEX, JavaScript

3. Use Case

This functionality is used to navigate to the latest previous/forward page based on the navigation history.

4. Steps

Steps:

  1. Create a page, Region and button on it.
  2. In the button behavior, choose Redirect URL and paste the below code

javascript: window.history.back();

  1. To go latest forward pages based on history, paste the below code

javascript:window.history.forward();

  1. To go specific pages, Paste the below code

javascript:window.history.go(-2);

 

5. Screenshot

 

Recent Posts