- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi Guys,
Do you know how do I hide / remove/ deactivate the buttons on the botton list ("2" )of the forms and leave the upper buttons "1"? So they are not duplicated? Whenever I deactivate on the Ui Actions, it deactivates on both places.
Tks!! 🙂
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @julianada-s ,
Please check below links this will help you to solve your problem
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0697296
Please mark my answer correct and helpful if this works for you
Thanks and Regards,
Sarthak
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @julianada-s - I'm not sure there's a way to do this without a doing something like this in a client script (which is not recommended):
function onLoad() {
var actionName = 'reject';
var targetId = '#' + actionName + '_bottom';
if (typeof jQuery !== 'undefined') {
var el = jQuery(targetId);
if (el.length > 0) {
el.hide();
}
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @julianada-s ,
Please check below links this will help you to solve your problem
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0697296
Please mark my answer correct and helpful if this works for you
Thanks and Regards,
Sarthak