- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2023 12:32 PM
I'm trying to make the assignment of groups upon arrival of alerts to be automatic, how can I do that?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2023 11:29 AM
That wasn't exactly what I was looking for, I just wanted to understand how to get the Sys.ids of existing groups, but thanks anyway
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2023 09:57 PM
Hello @karinamel
You need to use onChange Client Script :-
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
var group = g_form.getDisplayValue('assignment_group');
alert(group);
}
Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2023 11:29 AM
That wasn't exactly what I was looking for, I just wanted to understand how to get the Sys.ids of existing groups, but thanks anyway