Hello everyone,
I’m running into an issue in Oracle APEX v24.1.6.
I created two application items: APP_TEST
and APP_TEST2
.
- In my Navigation Bar List, I use
&APP_TEST.
as the list entry name and &APP_TEST2.
as the badge.
- I also assigned the CSS class
workspace-global
to the list item.
When I click on the child element in the Navbar, I’m redirected to a modal page where I set new values for APP_TEST
and APP_TEST2
using PL/SQL in the OnClick event.
The values are updated correctly in session state, but the Navigation Bar List does not refresh.
I already tried:
location.reload(true)
- a custom event trigger
- refresh using a jQuery selector
…but none of these worked. Only when I press F5 manually in the browser, the new values are displayed in the Navbar.
👉 Has anyone else experienced this issue? And if yes, is there a reliable way to refresh Navigation Bar List items dynamically after updating application items?
Thanks a lot in advance!