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!

Interactive Grid Edit Mode javascript page scroll issue

Scott H.May 19 2020 — edited May 27 2020

Apex 19.2 DB: 12.2  Windows

I have a few long pages with nested interactive grids.

I'm using onload javascript to enable edit mode by default, but it scrolls to the bottom of the page with the onload DA.

apex.region("IG1").widget().interactiveGrid("getActions").set("edit", true);

apex.region("IG2").widget().interactiveGrid("getActions").set("edit", true);

apex.region("IG3").widget().interactiveGrid("getActions").set("edit", true);

window.scrollTo(0, 0);

This is a modal dialog.. and it scrolls to the bottom of the screen.

Any suggestions on how to get it to start at the top?

Thanks,

Scott

Comments
Post Details
Added on May 19 2020
4 comments
603 views