messages.recurrenceEditor.frequenciesObject
The configuration of the scheduler recurrence editor frequencies messages. Use this option to customize or localize the scheduler recurrence editor frequencies 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: "Recurring Event",
recurrenceRule: "FREQ=WEEKLY"
}
],
messages: {
recurrenceEditor: {
frequencies: {
never: "Never",
hourly: "Hourly",
daily: "Daily",
weekly: "Weekly",
monthly: "Monthly",
yearly: "Yearly"
}
}
}
});
</script>
messages.recurrenceEditor.frequencies.dailyString
The text similar to "Daily" displayed in the scheduler recurrence editor.
Example - set the "daily" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
frequencies: {
daily: "daily"
}
}
},
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.frequencies.monthlyString
The text similar to "Monthly" displayed in the scheduler recurrence editor.
Example - set the "monthly" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
frequencies: {
monthly: "monthly"
}
}
},
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.frequencies.neverString
The text similar to "Never" displayed in the scheduler recurrence editor.
Example - set the "never" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
frequencies: {
never: "never"
}
}
},
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.frequencies.weeklyString
The text similar to "Weekly" displayed in the scheduler recurrence editor.
Example - set the "weekly" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
frequencies: {
weekly: "weekly"
}
}
},
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.frequencies.yearlyString
The text similar to "Yearly" displayed in the scheduler recurrence editor.
Example - set the "yearly" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
frequencies: {
yearly: "yearly"
}
}
},
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