filter

custom filtering function

function filter;

Example

webix.ui({
    view:"suggest",
    filter:function(obj, value){
         return obj.value == value; // strict match
    }
});

Details

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.

Back to top