blocks a time interval
webix.ui({
view:"calendar",
type:"time",
blockTime:function(date){
if ((new Date(2018,6,1,8,40)).valueOf() == date.valueOf())
return true;
return false;
}
});
The blockTime function must return true for blocked time intervals and false for the rest.