Hello,
while I add filtering customization inside DropDownList component I lose some functionality.
filtering: (e) => {
let query = new ej.data.Query();
query.addParams("selectedId", selectedId);
query.addParams("searchTerm", e.text);
e.updateData(_customerDatasource, query);
},
DataSource that I use is previously fetched in array.
https://ej2.syncfusion.com/javascript/documentation/drop-down-list/filtering/#diacritics-filtering
for example in array i have "ŠiŠ" and I expect that sis or šiš would return this item with "šiš".
I use 18.1.45 version of library ( will update in few weeks, I have some problem with customization and newer version of library - if I update some things not working as before ).
KR,
Ivan