Repeating group filter

Hey everyone !

I am looking for some help from kind ppl :slight_smile:
I am doing some project and im stuck at this point:
I want to make a searchbox with multiselect filtering. I want one of the filters to be choose ur discipline. Upon clicking it popup shows up with most popular disciplines which u can multi select to do the filtering or u can press show more to see all of them so bigger popup shows up to multiselect from all of them. I did data types and option sets and it kinda work coz popular disciplines are shown in repeating group but I can not select them. Like clicking any of them is not possible they are just shown. any condition i do for click is not working. Sending screens below.

To make items in your repeating group selectable for multiselect filtering:

  1. Go into your repeating group cell.

  2. Place a group inside (or on top), and set its type/content to “discipline”.

  3. In the workflow editor, add an event “When this group is clicked”.

  4. Set a custom state (type: list of disciplines) on your main popup, like “Selected Disciplines”.

  5. In the click workflow, use “Set state” to add/remove “Current cell’s discipline” from that custom state. Use the :plus item and :minus item operators to handle selection and unselection.

  6. For feedback, use a conditional: “When Selected Disciplines contains Current cell’s discipline, change background color”.

Summary: Make the cell clickable, set a custom state list on the popup, and use Bubble’s add/remove from list actions to handle multiselect for filtering. This will let you select and deselect disciplines directly in your popup.