
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-06-2025 05:55 AM
Hi All,
Requirement is to hide NEW button from Work Order Task related list when Change request is Closed or Cancelled.
I have found the Related List Action related to New but I am unable to set the condition using either Script or Client Condition ? (snaps)
I am new to workspace and do not know how to use these field.
How I could set /use these fields to check Change requests "State" field condition to Closed or Cancelled ?
Regards,
Virendra
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2025 09:47 AM
In script condition, add current.state!='closed' or the integer value of closed state. i.e current.state!=3 assuming 3 is the value for closed state. which means that the button will only be visible when the state is not closed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2025 09:47 AM
In script condition, add current.state!='closed' or the integer value of closed state. i.e current.state!=3 assuming 3 is the value for closed state. which means that the button will only be visible when the state is not closed.