Documentation

events

sets an additional css class that will be applied to days

function events;

Example

webix.ui({
    container:"listA",
    view:"calendar",
    events:webix.Date.isHoliday // the webix.Date.isHoliday function marks weekend days in red
});

See also

Details

The function is called for all days and must return the name of a css class to apply.

Back to top