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

Select

methods

Gets or sets the events (or slots) which are selected.

Parameters:eventsArray

The Uids of events which should be selected. List of the available events can be get using the data method.

optionsObject
options.eventsArray

The Uids of events which should be selected. List of the available events can be get using the data method.

options.resourcesArray

The resource values (groups) in which the events or slots should be selected. If no resources are defined the first event or slot that match the condition will be selected. This option is not supported in "agenda" view.

options.startDate

The start time from which the selection of the slots begins. If 'events' argument is provided the slot selection is ignored.

options.endDate

The end time in which the selection of the slots ends. If 'events' argument is provided the slot selection is ignored.

options.isAllDayBoolean

Allows selection of slots in day and time slots of the view (applicable in day/week/workweek views).

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

setTimeout(function () {
    var scheduler = $("#scheduler").data("kendoScheduler");

    //find event for selection:
    var event = scheduler.dataSource.data(); 
    scheduler.select([event[0].uid]);

    //log selected event data
    console.log(scheduler.select());
  });
</script>
Not finding the help you need?
Contact Support