Hi Everyone,
I have built an application using an interactive grid. The user launches a modal page where they divide one job on the list into many. When they save, it inserts the new entries and the interactive grid page is refreshed. The issue is that it puts the user back to the beginning of the grid data. This makes the job annoying because the users are working through many pages of data and need to go back to where they were. Is there a way to go to the previous row which was updated or even the page?
This very recent thread asked the same question:
Set focus on specific row in Interactive Grid
I commented on it:
I created two items called P19_JOBNO and P19_RELEASE. The branch from my other page passes values to these. The idea is that in the interactive grid, I scroll right to these.
var rec = apex.region("ProdList").widget().interactiveGrid("getViews", "grid").model.getRecord("117980");
apex.region("ProdList").widget().interactiveGrid("getViews", "grid").setSelectedRecords([rec], true);
When I use the above code, it does nothing.
Once the dialog is submitted, the user needs to be taken back to the page and the row they were just working with in the interactive grid so the user can continue where they left off.
Any help would be greatly appreciated.