Hi all,
I have a frame with many interactive components, including a tree view with different levels of collapsible elements.
When presenting, i can open or collapse any level.
Now i need 2 buttons/actions : one to open all items, and one to collapse them all.
What i did for now is I created 2 frames : Frame1 with all items closed, and Frame2 with all items opened.
And 2 buttons : “Open all” that navigates to Frame2, and “Close all” to Frame1
Problem is : when i’m in Frame1, i can open any item i want.
How to make the “Close all” button working on this frame?
“Logical” way would be to add an interaction to navigate to frame1, checking “reset component state”.
But you can’t link to the same page you’re in.
Any idea ?
(ideally without using variables to record each individual open/close state for each level)
Thanks !