Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2025 04:12 AM
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:
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?