Autocomplete doesn't offer words starting with čžř
obikenoby opened this issue · 2 comments
obikenoby commented
Autocomplete doesn't offer words starting with čžř, it worked in the version 0.12 and stopped working after upgrading to last version.
Steps to reproduce:
- click to the input field
- start typing any of czech characters [čžř]
- words are not selected when the word starts with characters above
Expected result: autocompete offers for example word žloutek
Actual result: nothing offered by autocomplete
[you can add explanations here of the context/what you were trying to
do, and if you have findings about what the cause might be]
azabolo commented
Try option respect_word_boundaries
$('#target').selectize({
respect_word_boundaries: false,
})
obikenoby commented
Thank you, it helps.