Warning: file_put_contents(/home/indya/public_html/administrator/logs/everything.php): failed to open stream: Permission denied in /home/indya/public_html/libraries/src/Filesystem/File.php on line 520

    How to remove the Custom approval notification buttons from oracle workflow?

    User Rating: 5 / 5

    How to remove the Oracle Workflow approval notification custom buttons from seeded notification?

    In the message section add the javascript like this for the custom buttons this will disable notification buttons.

     

     

    <script>
    window.addEventListener("load", 
          function(){var buttons = document.getElementsByTagName("button");
          for (var i = 0; i < buttons.length; i++)
          {
           if (buttons[i].title == "Approve") buttons[i].style.visibility = "hidden";
           if (buttons[i].title == "Reject") buttons[i].style.visibility = "hidden";
          }
          });
    </script>

     

     

     

    <
    © 2021 IndyaCentral.com