- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2022 07:58 PM
when I submit an incident in service portal, there is a 'Resolve' Action, when I clicked Resolve, the State changed to Resolved, I want to make this 'Resolve' Action can clicked only when State is In progress. What should I do? Thank you!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2022 08:35 PM
You need to modify the widget Incident Standard Ticket Actions
There is a data.canResolve
flag there in the server code, which you can edit to add your condition such as when incidentGr.state == 2; //or whatever your WIP state is

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2022 08:35 PM
You need to modify the widget Incident Standard Ticket Actions
There is a data.canResolve
flag there in the server code, which you can edit to add your condition such as when incidentGr.state == 2; //or whatever your WIP state is
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2022 10:05 PM
It worked, Thank you!