can this “error” be by-passed in server side scrip...
# suitescript
m
can this “error” be by-passed in server side scripts somehow?
z
@mtsb Can you check when it is firing? I don’t think you can change it server side, but I know you can bypass the “are you sure you want to reload? message with this piece of code
Copy code
if (window.onbeforeunload) {
                window.onbeforeunload = function () { null; };
            };