- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2016 11:17 AM
I tried many things but here is my latest attempt that creates the above mess:
var assigned=org.name.toString().trim(); | |||
mainTasker.u_glide_list_3=mainTasker.u_glide_list_3.concat(assigned+', '); |
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-23-2016 05:40 PM
Before going into the code, are these three list fields on the same table? If yes, then the following code will work
var arrayUtil = new ArrayUtil();
var a1 = gr.<list1 field name>.toString().trim().split(',');
var a2= gr.<list2 field name>.toString().trim().split(',');
gr.<list3 field name>=arrayUtil.union(a1,a2).join();
gr.update();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-28-2016 07:16 AM
to remove the error, you may try adding "global." before "ArrayUtil();". So the second line in your script would be
var arrayUtil = new global.ArrayUtil();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-28-2016 07:21 AM
Thanks Abinay and John. It worked great!!