var form = scriptContext.form;
// Hide the button by its ID
var button = form.getButton('return'); // Replace 'return' with the actual ID of the button you want to hide
if (button) {
button.isHidden = true;
}
var form = scriptContext.form;
// Hide the button by its ID
var button = form.getButton('return'); // Replace 'return' with the actual ID of the button you want to hide
if (button) {
button.isHidden = true;
}