How to Hide the add attachments button on a request item in the service portal
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2017 07:03 AM
Hi All
I want to hide the "add attachments" button on one of my service portal request items.
I've already hidden the submit button using the client controller in a widget using the following script.
function() {
/* widget controller */
var c = this;
hideButtons();
function hideButtons(){
$('button[name="submit"]').hide();
}
}
is there a way to also hide the add attachment button in the same way?
Labels:
- Labels:
-
Service Portal Development
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2018 01:20 PM
Were you successful in addressing this?