Hey @Ankur Bawiskar

I see. I just wanted to let you know, this script works as long as you enable "Form button", but that's when a custom button is added. The UI Action script looks like this:  

function scrollToTasks() {
    setTimeout(function () {
        var taskSection = document.querySelector("div[tab_caption='Aktiviteter']");
        if (taskSection) {
            taskSection.scrollIntoView({ behavior: "smooth", block: "start" });
        }
    }, 500);
}


So it works when I enable form button, but then this button is excessive: 

ronro2_0-1742641742160.png


Don't you think it should be possible to somehow connect the script to the Save button instead? And that the script executes after reloading the form?