Hi everyone,
I'm working with an Interactive Grid (IG) in Oracle APEX that can display more than 200 records. One of the columns contains a link to a modal page, where a user can update a specific field.
After the update, the modal is closed using a button with a Dialog Close
action. On the parent page, I use a Dialog Closed dynamic action to refresh the IG region. However, I'm facing two issues:
- If I'm on page 3 of the IG and update a record, after the refresh it jumps back to page 1.
- If I'm on record #50 of page 1 (after scrolling), the IG scrolls back to the top after the refresh.
I understand this is the default behavior when refreshing the entire region, but is there a way to avoid losing the current page or scroll position?
What I need:
- Ideally, keep the user on the same page and position in the IG after returning from the modal.
- Or, is there a better way to update the grid without performing a full region refresh in the
Dialog Closed
event?