- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2024 10:35 AM
Hi There,
Is there a way to display dialog/warnings when an incident is set to a P1 before it is created?
We have had cases that P1's are set without awareness of what that means and there is no way to remove the P1 status once it is set.
How do other organizations handle false P1's?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2024 02:08 PM
Hi @Swebb ,
if (isLoading || newValue === '') {
return;
}
if(newValue=="1")
{
var res= confirm('Priority will be changed to P1. Are you sure to proceed with this action?');
if(res== true){
return true;
}
else{
g_form.setValue('priority',oldValue);
}
}
}
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks & Regards,
Sumanth Meda
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2024 02:08 PM
Hi @Swebb ,
if (isLoading || newValue === '') {
return;
}
if(newValue=="1")
{
var res= confirm('Priority will be changed to P1. Are you sure to proceed with this action?');
if(res== true){
return true;
}
else{
g_form.setValue('priority',oldValue);
}
}
}
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks & Regards,
Sumanth Meda