messages.recurrenceEditor.weekdaysObject

The configuration of the scheduler recurrence editor week days messages. Use these options to customize or localize the scheduler recurrence editor weekdays messages.

Example

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
    date: new Date("2022/6/13"),
    startTime: new Date("2022/6/13 07:00 AM"),
    height: 600,
    views: ["day", "week"],
    timezone: "Etc/UTC",
    dataSource: [
        {
            id: 1,
            start: new Date("2022/6/13 10:00 AM"),
            end: new Date("2022/6/13 11:00 AM"),
            title: "Weekly Meeting",
            recurrenceRule: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"
        }
    ],
    messages: {
        recurrenceEditor: {
            weekdays: {
                day: "day",
                weekday: "weekday",
                weekend: "weekend day"
            }
        }
    }
});
</script>

messages.recurrenceEditor.weekdays.dayString

The text similar to "day" displayed in the repeat by section of the monthly recurrence pattern.

Example - set the "day" scheduler recurrence editor message

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

The text similar to "weekday" displayed in the repeat by section of the monthly recurrence pattern.

Example - set the "weekday" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        weekdays: {
            weekday: "Week day"
        }
    }
  },
  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.weekdays.weekendString

The text similar to "weekend" displayed in the repeat by section of the monthly recurrence pattern.

Example - set the "weekend" scheduler recurrence editor message

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