
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2018 12:03 PM
I have two list collectors type variables as you see below and both have the glide_list attribute. How can I have this always expanded? I've seen several examples however, none have worked so far and I'm assuming there is something slight different that needs to be done when its in regards to catalog variables.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2018 01:54 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2018 01:08 PM
Hi Edwin, Write an onload client script
function onLoad() { //Type appropriate comment here, and begin script below
var var1 = g_form.resolveNameMap('var_name');
setTimeout( function() { $(var1+'_unlock').click(); }, 750); }
This will fix your issue!! Thanks Mark Correct if this resolves your query

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2024 12:50 PM
Thanks for the help!
For anyone who happens across this, modern versions of ServiceNow limit the ability of client scripts to interact with elements on the page like this by default. You'll need to set the "Isolate Script" option on your script to false in order for this to work.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2018 01:54 PM
Thank you very much, that worked!!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-02-2018 07:54 PM