$w.onReady( async function () {
var newFilter = wixData.filter();
newFilter = newFilter.contains( ‘name’ , “Cat” );
await $w( ’ #dynamicDataset ’ ).setFilter(newFilter)
$w( ’ #dynamicDataset ’ ).onReady( () => {
;$w( " #repeater1 " ).expand()
})
})
code you sent me works…! thank you…One last question how’s the syntax to the newFilter command to filter with the name “cat” and those containing the word “dog” in order to bring both results?