calendars

toggles the ability to add events to calendars

boolean calendars;

Example

webix.ui({
    view: "scheduler",
    date: new Date(2020, 4, 21, 0, 0, 0),
    url: "https://docs.webix.com/calendar-backend/",
    calendars: false // disables the ability to work with calendars
});


Default value:

true
Details

If it is set to false users cannot work with calendars i.e. add events to them or change calendars in the event edit form.

See also
Back to top