- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 10:31 AM
How to auto populate a List Collector variable (It is read only field as per requirement) which should populate based on another reference variable of same catalog item.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 10:43 AM
You can use g_form.setValue in a Client Script. Set the value to a comma-separated list of sys_ids in the referenced table. If that doesn't work there's a script to move certain values from the Available to the Selected box that I can dig up for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 06:40 AM
You can supply a comma-separated list of email addresses instead of sys_ids. Use the Variable attribute = glide_list to display the variable similar to a List type field instead of the Available/Selected boxes, then the list of email addresses corresponding to the selected records will be displayed in place of the display column for the referenced table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2023 10:43 AM
You can use g_form.setValue in a Client Script. Set the value to a comma-separated list of sys_ids in the referenced table. If that doesn't work there's a script to move certain values from the Available to the Selected box that I can dig up for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2023 05:47 AM
Thanks for the response.
Auto population is working with a client script. But, It is showing up sys id's instead of emails.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2023 06:40 AM
You can supply a comma-separated list of email addresses instead of sys_ids. Use the Variable attribute = glide_list to display the variable similar to a List type field instead of the Available/Selected boxes, then the list of email addresses corresponding to the selected records will be displayed in place of the display column for the referenced table.