i'm using a repeat control in my XPage which contains some repeated sections. The titles/header of this sections are computed from a JSON String which is stored in a sessionScope variable. So far evrything works fine.
Now i have to expand/collapse one or more sections with a button outside the repeat control.
The button "knows" the title and the header of the section which have to be collapsed/expanded. How can i get the right ID to use something like:
getComponent("XXXXXXX").setClosed(true);
Any Ideas?