enables/disables the ability to add events via drag-and-drop
webix.ui({
view: "scheduler",
url: "https://docs.webix.com/calendar-backend/",
dragCreate: false // disables adding events via drag-and-drop
});
By default, users can add events via drag-and-drop, i.e. the value is true.
Back to top