LIst Collector Variable - expanded by default

leahp
Kilo Guru

Is there a way to have a variable List Collector with the glide_list attribute expanded / unlocked by default?

1 ACCEPTED SOLUTION

leahp
Kilo Guru

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"


}

 

View solution in original post

5 REPLIES 5

Thanks for posting this - that option is much easier to parse and update in the future.