0
votes

For the Interactive Grid Oracle APEX, How can I the reset all Filters on the Page when a Page load new.

1
Hi, what got you stuck?ankabot

1 Answers

2
votes

You can try creating dynamic action on page load, and set type of action for "Execute JavaScript Code". In code section paste:

apex.region("yourReportRegionName").widget().interactiveGrid("getActions").invoke("reset-report");

or if you use APEX 18.1+ the following code should also work:

apex.region("projects_report").call("getActions").invoke('reset-report');

For more details you can check out Marko Goricki's github https://github.com/mgoricki/orclapex-ig-cheat-sheet . There are planty usefull tricks there, and also links to John Synder's blog.