- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 10:37 AM
Hi all
[SAN DIEGO VERSION]
I know I can hide a button by changing the condition on the UI button itself, however, I don't wanna do that because they are in the global scope.
I got this to work once but it's not working anymore
I know the button is there because If I run the code on the 'Javascript Executor', it hides the button
I also tried a client script but I failed like a baby
I got this to work once, not sure what the issue is
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 10:59 AM
Hi Juan,
Can't you just do that here without DOM manipulation.
Mark Correct or Helpful if it helps.
***Mark Correct or Helpful if it helps.***
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 10:42 AM
var items = $$('BUTTON').each(function(item){
if(item.innerHTML.indexOf('Show Workflow') > -1){
item.hide();
}
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 10:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 10:51 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2022 10:59 AM