Hello. I’m currently studying Bubble and would like to implement the following functionality:
I want to create a feature where after selecting a category, the user moves to a different page that displays items matching that category in a repeating group.
I will be using two pages for this:
- A page to select the category
- A page that displays items matching the selected category in a repeating group
I know how to use a dropdown to select a category and filter a repeating group on the same page, but I don’t understand how to implement filtering by category across different pages. I’d like to know how to do this.
The repeating group will display a list of vegetable names as follows:
- Tomato
- Pepper
- Onion
- Corn
- Spinach
- Broccoli
There are three categories:
- Red
- Yellow
- Green
Current situation:
- I’ve created a vegetable category in the Option sets with three options: “Red,” “Green,” and “Yellow.”
- In the database, I’ve created the following fields:
- Field type: Text, Field name: “Vegetable Name”
- Field type: Option sets (Vegetable Category type), Field name: “Vegetable Category”
- On the first page “select category page,” I’ve set up three groups (Red, Green, Yellow).
- On the second page, I’ve placed a repeating group, selected “vegetables” as the Type of content, and chosen “Do a search for vegetables” as the Data source.
Could you please guide me on how to implement this functionality? Thank you in advance.