I am looking for some help from kind ppl
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:
Go into your repeating group cell.
Place a group inside (or on top), and set its type/content to “discipline”.
In the workflow editor, add an event “When this group is clicked”.
Set a custom state (type: list of disciplines) on your main popup, like “Selected Disciplines”.
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.
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.