readonly

toggles calendar and event editing

boolean readonly;

Example

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/",
});

Related samples

Details

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;
See also
Back to top