Hi
Under APEX 24.2.0 I have a page with two interactive reports and a region display selector. When I create a new article it opens a modal dialog page. When I create an article, and close the modal dialog, the interactive region is not updated with the new article. I have put this on Page load (copied from a previous post I wrote) :
$('.apex-rds').data('onRegionChange', function(mode, activeTab) {
if (activeTab.href != "#SHOW_ALL")
{
apex.region(activeTab.href.replace("#","")).refresh();
}
});
But there it does not work.

Best regards.