sets an additional css class that will be applied to days
webix.ui({
container:"listA",
view:"calendar",
events:webix.Date.isHoliday // the webix.Date.isHoliday function marks weekend days in red
});
The function is called for all days and must return the name of a css class to apply.
Back to top