messages.recurrenceEditor.daily Object

The configuration of the scheduler recurrence editor daily messages. Use this option to customize or localize the scheduler recurrence editor daily messages.

messages.recurrenceEditor.daily.interval String

The text similar to " day(s)" displayed in the scheduler recurrence editor.

Example - set the "interval" scheduler recurrence editor message

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

messages.recurrenceEditor.daily.repeatEvery String

The text similar to "Repeat every: " displayed in the scheduler recurrence editor.

Example - set the "repeatEvery" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        daily: {
            repeatEvery: "Repeat on: "
        }
    }
  },
  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