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