- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2022 11:50 AM
Hi,
I am wanting to hide certain states on the process flow based on the Change Model. For example, here in our company we have information changes, that does not require approvals. I want to hide the Assess, Authorize, Scheduled, and Implementation states on the process flow.
I did find an old example of this, 10 years ago example. It said to add a new field with a type set as a condition to the sys_process_flow table, but there is already a condition field there.
It seems like the ui macro is where I would need to make that condition fit, but I am unsure of where in ui macro script would I incorporate the condition.
Any help would be appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2022 04:15 PM
I found the answer. I ended up creating a UI Policy and making sure that the Isolate Script was set to false, then I added the following to the script and it worked.
$j("a:contains('Assess')").hide();
$j("a:contains('Authorize')").hide();
$j("a:contains('Scheduled')").hide();
$j("a:contains('Implement')").hide();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2022 04:15 PM
I found the answer. I ended up creating a UI Policy and making sure that the Isolate Script was set to false, then I added the following to the script and it worked.
$j("a:contains('Assess')").hide();
$j("a:contains('Authorize')").hide();
$j("a:contains('Scheduled')").hide();
$j("a:contains('Implement')").hide();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2022 08:20 AM
Hi Dazler,
I am trying for Scoped Application table , this code is not working! Do i need to change anything?
Please help!
Regards,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2024 01:50 PM
$j("a:contains('Review')").parent().hide();