- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-23-2018 12:05 PM
Is there a way to have a variable List Collector with the glide_list attribute expanded / unlocked by default?
Solved! Go to Solution.
- Labels:
-
Service Catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-02-2018 12:23 PM
For anyone searching on how to do this:
Create an onLoad Client Script:
function onLoad() {
//Type appropriate comment here, and begin script below
window.setTimeout(openUnlock, 2000);
}
function openUnlock(){
gel('IO:42dbec804fd79b00b7ea650f0310c79e_unlock').click();//this is the IO of the variable you want to "unlock"
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-04-2024 12:51 PM
Thanks for posting this - that option is much easier to parse and update in the future.