messages.recurrenceEditor.summaryObject
Configures the connecting words used in the recurrence trigger summary.
Example - customize recurrence summary messages
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2026/8/3"),
messages: {
recurrenceEditor: {
summary: { on: "during", onThe: "during the", onDay: "during day", until: "through" }
}
},
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;UNTIL=20260831T000000Z" }
]
});
</script>