Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

apex_page.get_url to clear interactive grid filtering data

seanzhSep 25 2024 — edited Sep 25 2024

Good afternoon, everyone,

Our Apex is 24.1 and I use apex_page.get_url to display a modal dialog page via AJAX. The problem is page 2 doesn't clear IG filtering data during each Ajax call even I specified page 2 should clear all caches, did I miss anything obvious? Any suggestions are appreciated

DECLARE

l_app number := v('APP_ID');
l_session number := v('APP_SESSION');
url_hold varchar2(2000);

BEGIN

url_hold:=apex_page.get_url( 
p_page => 2,
p_clear_cache => '2'
, p_items => 'P2_SCANNUM'
, p_values => apex_application.g_x01
, p_triggering_element => 'apex.jQuery(''#CART_DATES_ID'')');



htp.prn(url_hold);


END;

This post has been answered by jariola on Sep 25 2024
Jump to Answer
Comments
Post Details
Added on Sep 25 2024
2 comments
339 views