- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2020 10:14 AM
The requirement is to hide or disable the "Remove All" button on the Multi-row variable set in the Service portal as we need to utilize only the edit button.
Any solution would be welcome.
Thanks in advance
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2020 12:27 PM
Can you go to:
yourinstance.service-now.com/nav_to.do?uri=sp_instance.do?sys_id=e2656985ff630200ba13ffffffffff68
That will take you to the "SC Catalog Item"-widget instance used in the portal
If that is the Widget Instance you are using. If not, search for that Widget Instance.
Add this CSS:
//Hide attachment button CSS
.r-2x > div:nth-child(1) > button:nth-child(2) {
display: none;
}
Like this:
The end result:
And with entries still hidden:
No customization needed. Just plain old CSS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2020 10:46 AM
Hi Aarushi,
Please refer below links
Hope this helps!
If you have any more questions, please let me know.
If I have answered your question, please mark my response as correct and helpful.
Thanks,
Sriram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-20-2020 11:26 PM
Thanks for your effort!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2020 10:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-19-2020 12:27 PM
Can you go to:
yourinstance.service-now.com/nav_to.do?uri=sp_instance.do?sys_id=e2656985ff630200ba13ffffffffff68
That will take you to the "SC Catalog Item"-widget instance used in the portal
If that is the Widget Instance you are using. If not, search for that Widget Instance.
Add this CSS:
//Hide attachment button CSS
.r-2x > div:nth-child(1) > button:nth-child(2) {
display: none;
}
Like this:
The end result:
And with entries still hidden:
No customization needed. Just plain old CSS.