a filter for items: defines which items will be included in a certain list
webix.ui({
view:"kanban",
listFilter:function(item, list){
// some code
}
});
The function's parameters:
The function returns true
, if the item is added into the list and false otherwise.