Hi Teoteogo,
In code there are always multiple approaches of solving a problem.
One way you can use is creating a different dataset for each dropdown and use the setFilter function
to filter only the items that share the previous dropdown’s value,
for example:
export function dropdownShoes_change(event) { $w(“#colorDataSet”).setFilter(wixData.filter() .contains(“shoes”,$w(“#dropdownShoes”).value) ) }
I recommend reading more about setFilter and wixDataQuery for more information
https://www.wix.com/code/reference/wix-dataset.html#setFilter
https://www.wix.com/code/reference/wix-data.WixDataQuery.html
Good Luck!