top of page
import wixData from 'wix-data';
​
export function radioGroup1_change(event) {
$w("#dataset1").onReady(function () {
$w("#dataset1").setFilter(wixData.filter()
.contains('tags', String($w('#radioGroup1').value)))
})
}
Explore More Codes
bottom of page