Multiple UI policies on same variables - how do I combine policies with opposite effect on same variable?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2020 01:50 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2020 02:48 PM
Hi Ash, I would like to not have to use a script. The dates are showing okay on the item page, but not on the ritm/tasks. How can I use the policies?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2020 11:35 AM
hi,
You can use UI policy script field to to set visible the field upon condition satisfied.
using script:-
if(condition){
g_form.setVisible('fieldName',true);
}
else{
g_form.setVisible('fieldName',false);
}
Or
else you can use reverse If check box to be checked to be visible on satisfying particular condition mentioned other wise not Visible.
Please I was able to solve your query please mark my answer correct and helpful.
Thanks & Regards,
Prasant Kumar Sahu