How to hide Save button in Service Portal form view

User166992
Tera Guru

How to hide Save button in Service Portal form view

1 ACCEPTED SOLUTION

Hi Jaikumar,



On the form widget, you should be able to use control+click to open 'Instance Options and select 'Disable UI Actions on Form' (this will not disable the blue 'Save' button). Hope this helps.



Screen Shot 2017-04-11 at 2.29.56 PM.png


View solution in original post

8 REPLIES 8

How do you get the button back if you've disabled the UI actions on form for the save button?


ive fixed this by removing the text in the additonal options box.


Hey Brandon, I cannot find the save button below these 3 checkbox. can you help me out in this like why is this happening?

Louis Savalli
Tera Expert

Rather than clone the form portal page or the widget, I used an onLoad client script configured to only run in the portal for the specific page I wanted to hide the button on.  I used DOM manipulation to hide the button:

var theButton = parent.window.document.querySelectorAll('[gsft_id="16350d81eb131100b749215df106fe1a"]');
theButton[0].style.display = "none";