custom filtering function
webix.ui({
view:"suggest",
filter:function(obj, value){
return item.value == value; //strict match
}
})
The property will be called when the suggest needs to be filtered by users text.
By default, the suggest uses case insensitive partial match filtering.