- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2024 09:11 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2024 04:39 AM
Hi @RJ56
Assuming that you want to display a warning before an incident is submitted, you can make use of the On-Submit Client Script on the Incident Table. Please configure it as below :
function onSubmit() {
//Type appropriate comment here, and begin script below
var watchList = g_form.getValue('watch_list');
if(watchList){
return true;
}
else{
g_form.addInfoMessage('Please provide the watch list details to submit !!!');
return false;
}
}
Thanks & Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-24-2024 04:39 AM
Hi @RJ56
Assuming that you want to display a warning before an incident is submitted, you can make use of the On-Submit Client Script on the Incident Table. Please configure it as below :
function onSubmit() {
//Type appropriate comment here, and begin script below
var watchList = g_form.getValue('watch_list');
if(watchList){
return true;
}
else{
g_form.addInfoMessage('Please provide the watch list details to submit !!!');
return false;
}
}
Thanks & Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-25-2024 05:51 PM
@Amit Verma thank you