Hi I was wondering if anyone could point me in the right direction of searching a single field key but with multipipe options. I have a #MultipileCheckbox that I’m using to obtain the search query. It works for one selection but as soon as there is more than one selection it returns no items.
let value = $w('#categoryCheckbox').value;
let string = ($w('#categoryCheckbox').value).toString();
dataQuery = dataQuery.contains('coursesCategory', string);
The event handler has multiple options and I have left this out to minimise the code.
Thank you!