URGENT: Fuzzy search in Checkboxes

Is it possible to have this as an option ? I’d like to be able to have checkboxes, radio buttons, and select elements do a “fuzzy” search instead of an “exact” search. I REALLY need this for a client project.

Hey @jacob! I am afraid this is not currently possible. This has been added as a suggestion for V2 :muscle:

@Support-Luis , Thanks for clarifying. I’m working on a workaround where my checkboxes are each tied to hidden search fileds and the search fields are actually the filters. I’m super close, but when I set the value of the search field it doesn’t seem to trigger FS Filters. Is there a way to force FS Filters to rebuild?

Hey @jacob! Have you tried dispatching an event rather than triggering the change?

Something like this after updating the value might work → checkboxToUpdate.dispatchEvent(new Event('input', { bubbles: true }));

THANK YOU Luis! This is exactly what I needed! It isn’t pretty, but it works.

1 Like