Disable automatic srolling on programmatic save?

Hey guys,

just wanted to ask a quick question is there any way I can disable the automatic scrolling to the top after running:

fd.save();

My current, very dirty workaround is:

var dang = fd._showAlert;
fd._showAlert = function () {};
fd.save();
//.... later
fd._showAlert = dang;

Hello @OZIO_Ketill,

Welcome to Plumsail Community!

This is a good way to prevent scrolling to the top.

1 Like