selectize / selectize.js

Selectize is the hybrid of a textbox and <select> box. It's jQuery based, and it has autocomplete and native-feeling keyboard navigation; useful for tagging, contact lists, etc.
https://selectize.dev/
Apache License 2.0
13.02k stars 3.59k forks source link

Selectize with Laravel full text search not working #2084

Open vaasi88 opened 5 months ago

vaasi88 commented 5 months ago

All functionality working fine except any character search in the selectize dropdown.

image

the search is working fine with the starting letters, but not with in the middle order characters. So typing "Ba" is working and finding the words correctly. image

But searching "an" is not working. image

My initialization part in app.js is,

import Selectize from '@selectize/selectize'; window.Selectize = Selectize;

What could be the problem.? i installed this selectize using npm package. npm i @selectize/selectize

Thanks in advance!

4C-DSolomon commented 2 months ago

I ran into the same issue upgrading, probably the same root cause: respect_word_boundaries is a new configuration option that was added. It defaults to true. Try setting that to false instead.