selectable Boolean (default: false)

If set to true the user would be able to select scheduler cells and events. By default selection is disabled.

Example - enable selection

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  selectable: true,
  views: ["day", "week"],
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>
In this article