Hi,
i need to jump to a specific field in the next row of interactive grid after 2 code scan steps. The previous steps i used this:
setTimeout(function() {
var view$ = apex.region("ig_karten").widget().interactiveGrid("getViews").grid.view$;
view$.grid("gotoCell", view$.grid("getActiveRecordId"), "LEGIC");
apex.region("ig_karten").widget().interactiveGrid("getActions").invoke("save");
}, 500);
Now i need to jump to the next row of the grid and more to the Mifirre column.

any suggestions? Thanks in advance.