copypaste

enables/disables the ability to copy, cut and paste events

boolean copypaste;

Example

webix.ui({
    view: "scheduler",
    url: "https://docs.webix.com/calendar-backend/",
    copypaste: false  // disables copying, cutting and pasting events
});

Details

By default, users can copy, cut, and paste events, i.e. the value is true.

Back to top