A way to sort a combobox filter result

Is there a function in order to order a filter result from Combobox?

Much appreciated. :slight_smile:

You can use your custom filter function like below:

combo.attachEvent("onKeyPressed",filt) ; function filt(){ //your custiom filtration }
or use the second parameter of method enableFilteringMode() like here dhtmlx.com/docs/products/dht … ilter.html
(last sample) to put your custom script.