Your wished functionality is doable by CODE.
There are several ways of how to solve it.
- DATASET-WAY
- WIX-DATA-WAY
- MIXED-WAY
What would be your steps?
- Choose item from FIRST-DROPDOWN → GETTING RESULTS !!!
- RESULTS adding to SECOND-DROPDOWN
- Choosing item from SECOND-DROPDOWN → GETTING AGAIN SOME RESULTS
- Adding the SECODN-RESULTS whereever you want.
https://www.wix.com/velo/reference/wix-data/query
$w.onReady(()=>{
$w('#myDropdown1_IDhere').onChange(()=>{
console.log("starting first filtering-process here");
start_Filter1();
});
});
function start_Filter1() {
// use for example Wix-Data-Api here to get the filtered results.
// or do it by the usage of a connected dataset to your database.
//either write the results immediately to the dropdown_1 or return themback to the main-function and add them to the second dropdown.
}
Repeat these actions for DROPDOWN-2.
Maybe, after reading this post here, you will get some more ideas, who knows…