Pop up messages when updating case "Comments" or "Closure Notes"
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 06:45 PM - edited 05-02-2024 04:25 PM
.
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2024 10:24 PM
Hi @Scotty88 ,
You can keep any scope either ' global ' or 'Customer Service ' . But as case table is in 'Customer Service ' Scope . So create Client Script in 'Customer Service ' Scope . i have modify the code and it is also working fine . please check below screenshots and script -
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
var acc = g_form.getDisplayBox('account').value.trim();
if (acc == 'Advanced Super Routing') {
alert('Comments has been updated');
}
}
Please Mark ✅Correct if this solves your query and also mark 👍Helpful if you find my response worthy based on the impact
Thanks,
Astik