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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Refresh specific regions on a page

cc13comAug 1 2024

Hi,

a few weeks ago I used the code example from Daniel to refresh specific regions on my page with a DA.

$('div.my-region-class').each(function() { 
    apex.region($(this).attr('id')).refresh(); 
});

I added “my-region-class” to “Column CSS Classes” in all relevant regions and it was working fine until I updated to 24.1.

Now I'm getting an “Error: Syntax error, unrecognized expression: #” in the browser console and it's pointing to this code snippet. I put a small example on apex.oracle.com. As soon as you change the select list item the error is showing in the browser console.

What is changed in the JS API?

This post has been answered by fac586 on Aug 1 2024
Jump to Answer
Comments
Post Details
Added on Aug 1 2024
1 comment
358 views