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:
- Create a page, Region and button on it.
- In the button behavior, choose Redirect URL and paste the below code
javascript: window.history.back();
- To go latest forward pages based on history, paste the below code
javascript:window.history.forward();
- To go specific pages, Paste the below code
javascript:window.history.go(-2);
5. Screenshot
Recent Posts