recurrenceRuleLabelTemplateString|Function

The template used to render the recurrence trigger summary in the desktop event editor.

The template data contains the following fields:

  • rule—The parsed recurrence rule object.
  • recurrenceRule—The serialized recurrence rule string.

Example - customize the recurrence trigger summary

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2026/8/3"),
  recurrenceRuleLabelTemplate: function(data) {
    return data.rule.freq.toUpperCase() + ": " + data.recurrenceRule;
  },
  dataSource: [
    { id: 1, title: "Inventory Review", start: new Date("2026/8/3 09:00"), end: new Date("2026/8/3 10:00"), recurrenceRule: "FREQ=WEEKLY;BYDAY=MO" }
  ]
});
</script>
In this article
recurrenceRuleLabelTemplate
Not finding the help you need?
Contact Support