- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2024 12:55 PM
I have a requirement on a catalog item to take a list collector that then needs to then copy a specific value of those collected records to a multi text box upon submission.
Example: Catalog item has 3 records with a 6 digit number for a Display Value on Variable A.
From those 3 records I need to get a value from each record and write it to a new multiline text box in Variable B.
- Assume Variable B will be hidden from catalog user in portal
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2024 01:18 PM
You need to make a GlideAjax call when there is a value added to the list collector.
So an onChange client script to get values and then make glideajax...Get the corresponding values and populate Variable B.
Below thread has similar requirement. You can use that solution
Please mark this response as correct or helpful if it assisted you with your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2024 01:18 PM
You need to make a GlideAjax call when there is a value added to the list collector.
So an onChange client script to get values and then make glideajax...Get the corresponding values and populate Variable B.
Below thread has similar requirement. You can use that solution
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2024 02:32 PM
I had to use the second part to keep from getting the Java error but it worked great. THANKS