Is there a function in order to order a filter result from Combobox?
Much appreciated. ![]()
Is there a function in order to order a filter result from Combobox?
Much appreciated. ![]()
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.