Hello,
is it possible to search from multiple fields in a database using a single search box. Currently I am using this code to search from a single field:
let searchboxvalue = $w("#searchbox").value;
$w("#dataset1").setFilter(wixData.filter().contains("description", searchboxvalue));
I now need to search both “title” and “description” field at the same time like a OR logic. Is this possible ?