Repeatable grouped list click to filter another repeatable grouped list

Hi, let’s say I have a page, split into 3 column. On the left will be a list of group names I get from the Database. Then once I click on the listed group name link, I’d like another repeatable list to display in the middle filtered by the group name clicked from the left. It’s like just filtering down.

Then finally, once the middle link is clicked, it will show the details of that record on the right side.

I know how to filter down using a drop down list. But I’d like to do it with a repeatable group with text links in them. How do I pass that group name value over to the next repeatable section? Or the details section?

1 Like

Hey @mills41

Best way to do this is by using states (or similarly you could use page parameters). So when the user clicks a group name, you update the state of that left column group to be the thing they clicked.

Then for the second column, when you are setting your data source you reference the state of the first column to do your data search. And then rinse and repeat for the third…


Josh @ Support Dept
Helping no-code founders get unstuck fast :rocket:save hours, & ship faster with an expert :man_technologist: on-demand

Thank you. I guess we can create page states and save variables there. Then access it throughout the elements in the page. All good. Thanks.

2 Likes