- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2020 10:54 AM
Hi,
I have a List Collector variable on a catalog item's form with attribute set to 'glide_list'. So it displays as a glide list and on load of catalog form it shows up with the lock icon as below (One has to click on the lock icon to expand it and select values):
I would like the display to show up expanded on load of the form as below:
Anyone know how to achieve this?
Thanks!
Solved! Go to Solution.
- Labels:
-
User Interface (UI)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2020 11:01 AM
You can use an onLoad Client Script to auto-unlock the variable, such as:
window.setTimeout(openUnlock, 2000);
}
function openUnlock(){
gel('IO:[SYS_ID_OF_YOUR_VARIABLE_HERE]_unlock').click();
}
Here's what mine looks like:
function onLoad() {
window.setTimeout(openUnlock, 2000);
}
function openUnlock(){
gel('IO:571b0111db3ea340049396a9db96199b_unlock').click();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2023 11:23 PM
Make "Isolated Script" field on your client script false. if it is true, DOM will not work.