selectize 0.15.2 respect_word_boundaries demo
search for č or Č and observe that only one entry is shown (it should return both)
by Cone
HTML
<html lang="cs">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://selectize.dev/css/selectize.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/selectize.js/0.15.2/js/selectize.min.js"></script>
</head>
<body>
<select id="select-beast" placeholder="Select a person...">
<option value="">Select a location...</option>
<option value="1">Жопа</option>
<option value="2">Сука</option>
<option value="3">New</option>
</select>
<script class="show">
$("#select-beast").selectize({
maxItems: 1,
sortField: "text",
});
</script>
</body>
</html>