Hide standard button using script

   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;
      }

Leave a comment

Your email address will not be published. Required fields are marked *