- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 08:52 PM
Create Change Request and then Click Change Tasks -> New.
How to hide Close Task button on Change Tasks when State is New record?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 09:01 PM
Hi,
Just append the following condition to the existing conditions of UI Action
&& current.state != 1
here replace 1 with your state value for Open
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 09:01 PM
Hi,
Just append the following condition to the existing conditions of UI Action
&& current.state != 1
here replace 1 with your state value for Open
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2019 09:39 PM
Thank you very much.