- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2020 04:34 AM
Hi,
I'm building a form that when a user is selected, I can populate an options list. Whilst I can manually populate the list, I am unable to look up the values I'd like using the GlideRecord Command.
I've added the Isolate Script box and unticked it as the help advised, but still no records are returned (confirmed using the alert command I've added in - see the screenshot). I've tested the script in isolation and it runs fine, so is this a restriction of where I'm trying to run it, and if so, any ideas how I get around it?
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2020 06:54 AM
Hi,
this is client script,
function onChange(control, oldValue, newValue, isLoading) {
}
script include:
var populateManager = Class.create();
});
Use this code and replace fields with your matching table fields. Use array concept given here you can check the records in drop down list.
Please mark it as helpful/correct based on impact.
Thanks
Darshani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-06-2020 08:05 AM
Hi Darshani,
Thank you very much. I was able to get that script up and running straight away, and it pulled in various assets, and from there I was able to modify it to pull in the info I wanted from the custom table. Fantastic.
Many thanks and Kind Regards,
Mark.