editable.editRecurringMode String

Recurring events edit mode. The available modes are:

  • "dialog" (default) - displays a dialog that allows the user to choose whether the current occurrence or the entire series will be edited;
  • "series" - displays an editor for updating the entire series;
  • "occurrence" - only the current occurrence will be edited.

Example - disable event deleting

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  editable: {
    editRecurringMode: "series"
  },
  views: [
    { type: "day" }
  ],
  dataSource: {
    data: [{
     id: 1,
     start: new Date("2013/6/5 8:00"),
     end: new Date("2013/6/5 10:00"),
     title: "my event",
     recurrenceRule: "FREQ=DAILY"
    }],
    schema: {
        model: {
            id: "id",
            fields: {
                id: {type: "number"}
            }
        }
    }
  }
});
</script>
In this article