Hi @yisrael-wix thanks so much for responding
i tried implemented your code and it works!
Thanks so much
But now i have this new problem:
I would like to Search for articles with both clinical and study in the same row.
This is my new code
import wixData from 'wix-data';
export function ititle_keyPress(event, $w) {
$w("#dataset1").setFilter(wixData.filter()
)
let str = 'Searchbox';
let words = str.split(" ");
console.log('SearchBox');
const filterValue = ("words").value
const byTitle = wixData.filter().contains("title", filterValue)
const byTag1 = wixData.filter().contains("tag1", filterValue)
const byTag2 = wixData.filter().contains("tag2", filterValue)
$w("#dataset1").setFilter(byTitle.or(byTag1.or(byTag2)))
}
Thanks so much!