New to Kendo UI for jQueryStart a free 30-day trial

Indicates whether the event is readonly. Readonly events render and remain selectable, but edit and remove API and UI actions do not start, and move and resize interactions stop before their event chains. Therefore, edit, save, cancel, remove, moveStart, move, moveEnd, resizeStart, resize, and resizeEnd are unavailable for the readonly event. Scheduler-level add, change selection, and navigate behavior is not globally disabled.

isReadonly

Boolean
<script>
var event = new kendo.data.SchedulerEvent({
    id: 1,
    title: "Maintenance Window",
    start: new Date("2013/4/4 12:00"),
    end: new Date("2013/4/4 13:00"),
    isReadonly: true
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(event.isReadonly); // outputs "true"
</script>
Not finding the help you need?
Contact Support