- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2017 05:34 AM
How to hide Save button in Service Portal form view
Solved! Go to Solution.
- Labels:
-
Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2017 11:35 AM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2017 10:33 AM
How do you get the button back if you've disabled the UI actions on form for the save button?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2017 10:55 AM
ive fixed this by removing the text in the additonal options box.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-25-2022 07:44 AM
Hey Brandon, I cannot find the save button below these 3 checkbox. can you help me out in this like why is this happening?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2021 08:57 AM
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";