recurrenceRule String
(default: undefined)
The recurrence rule describing the recurring pattern of the event. The format follows the iCal specification. You can find the recurrenceRule information under section 3.3.10.
Example - set the recurrence rule
<script>
var event = new kendo.data.SchedulerEvent({
id: 1,
start: new Date("2013/9/2 12:00"),
end: new Date("2013/9/2 12:30"),
title: "Lunch",
recurrenceRule: "FREQ=DAILY"
});
</script>