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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.