sets the template according which items will be grouped in units.
webix.ui({
view:"unitlist",
...
uniteBy:function(obj){
return obj.name.substr(0,1);
}
});
The property function receives one parameter - the item object.
Back to top