
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2019 07:11 AM
Hello All,
I have a requirement to Display some additional choice list if an assignment group contains "tools" in the assignment group name.
To describe further we have added 2 new On Hold reason options to the Field On hold reason for incidents. The requirement is to display those additional choices only when an assignment group name contains "tools" in it , otherwise display the choice list without those 2 new choices.
Please help me out on this.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2019 07:14 AM
Try a UI policy. Change according to your requirements.
Vinod Kumar Kachineni
Community Rising Star 2022
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2019 07:14 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2019 05:41 AM
This does not seem to work. Please help.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-22-2019 06:20 AM
Hello vkachineni,
Yes this worked but with little adjustments as below :
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-21-2019 07:16 AM
in the onLoad client script you can use:
g_form.add_option(field, value) to add an option to a drop down
so you pseudo code is:
if (assignment group contains 'tools')
g_form.add_option(field name, option to add);