Live filtering repeater content

Hey there Axel.
Each dropdown menu has items and each item has a value.
Therefore if you set up onChange event handler for your dropdown menu and set if conditions for each your values, you can filter your dataset accordingly.

Let’s give an example:

import wixData from 'wix-data';
        
export function dropdown1_change() { //This happens when we change the dropdown value
    if ($w("#dropdown1").value) === "value1" { //and if we select first item in the dropdown
        $w('#dataset1').setFilter( wixData.filter()
        .eq('location', 'Liberland') ); //we set a filter on dataset1 to show the items 
                                        //which exactly has Liberland in location field
    if ($w("#"dropdown1").value) === "value2" {//...
    //you can chain if conditions like this
    }
}

Try to implement this on your page and let me know if it worked.

** Don’t forget to add your event via properties panel at the first place. Typing only the code won’t help.