toggles calendar and event editing
webix.ui({
view: "scheduler",
date: new Date(2020, 4, 21, 0, 0, 0),
readonly: true, // disables calendar and event editing
url: "https://docs.webix.com/calendar-backend/",
});
The reactive property toggles calendar and event editing. Refreshing is not required as the change will be applied immediately.
You can also access and alter this property via the widget state:
// disables calendar and event editing
$$("scheduler").getState().readonly = true;