Vertical List -- Drill Into Item

Hello … I have a Vertical List pulling data from a database (the Bubble database). If I want to show, for example, the “title” of the items in the list, then, select that item, and have the message of the item displayed. Is that possible? Essentially, I’m selecting something to open and then seeing all the fields contained in the record.

Of course I guess you are doing Do a Search For and showing currentcell´title or parent group if a group exist then when you click it you can display that in a popup or show a hidden text containing the other field for example current cell´s description

Yes, it’s possible. In Bubble, set up your vertical repeating group to show the title of each item. Inside each cell, add a group or button that’s clickable.

On “When this group/button is clicked”, use a workflow to either:

  • Show a popup, and set the popup’s data to “Current cell’s item”, then use text elements in the popup to display all fields (message, description, etc.)

  • Or reveal a hidden group inside the cell that shows the “Current cell’s item’s message” and other fields.

You can access any field from the clicked item using “Current cell’s thing:field_name.”

Summary: Use a click action in each cell to show a popup or hidden group, set its data as “Current cell’s thing”, then reference any field you need for display.

Thank you!!