Collapsed state in a group list

Hi,
I would like to know if it is possible to check wether an item is collapsed/expanded in a group list ?
Best regards, Frédéric

Hi,

a collapsed item has $template property with “Back” value. Therefore you may use the following:

function isExpanded(id){
return $$(“mylist”).item(id).$template == “Back”
}

Thank you.
br, Frédéric.