messages.editorObject
The configuration of the scheduler editor messages. Use this option to customize or localize the scheduler editor 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: "Team Meeting"
}
],
messages: {
editor: {
allDayEvent: "Full day event",
description: "Event description",
editorTitle: "Event Editor",
end: "End time",
endTimezone: "End timezone",
repeat: "Recurrence",
separateTimezones: "Use separate start and end time zones",
start: "Start time",
startTimezone: "Start timezone",
timezone: "Timezone",
timezoneEditorButton: "Time zone",
timezoneEditorTitle: "Time zones",
title: "Event title"
}
}
});
</script>
messages.editor.allDayEventString
The text similar to "All day event" displayed in the scheduler event editor.
Example - set the "allDayEvent" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
allDayEvent: "Full 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.editor.descriptionString
The text similar to "Description" displayed in the scheduler event editor.
Example - set the "description" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
description: "Message"
}
},
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.editor.editorTitleString
The text similar to "Event" displayed as title of the scheduler event editor.
Example - set the "editorTitle" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
editorTitle: "Edit event"
}
},
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.editor.endString
The text similar to "End" displayed in the scheduler event editor.
Example - set the "end" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
end: "End of the event"
}
},
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.editor.endTimezoneString
The text similar to "End timezone" displayed in the scheduler event editor.
Example - set the "endTimezone" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
endTimezone: "End date timezone"
}
},
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.editor.repeatString
The text similar to "Repeat" displayed in the scheduler event editor.
Example - set the "repeat" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
repeat: "Repeat the event"
}
},
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.editor.separateTimezonesString
The text similar to "Use separate start and end time zones" displayed in the scheduler event editor.
Example - set the "separateTimezones" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
separateTimezones: "Set different start and end time zones"
}
},
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.editor.startString
The text similar to "Start" displayed in the scheduler event editor.
Example - set the "start" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
start: "Start of the event"
}
},
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.editor.startTimezoneString
The text similar to "Start timezone" displayed in the scheduler event editor.
Example - set the "startTimezone" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
startTimezone: "Start date timezone"
}
},
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.editor.timezoneString
The text similar to "Timezone" displayed in the scheduler event editor.
Example - set the "timezone" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
timezone: "Event timezone"
}
},
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.editor.timezoneEditorButtonString
The text similar to "Time zone" displayed as text of timezone editor button in the scheduler event editor.
Example - set the "timezoneEditorButton" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
timezoneEditorButton: "Time zone"
}
},
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.editor.timezoneEditorTitleString
The text similar to "Timezones" displayed as title of timezone editor in the scheduler event editor.
Example - set the "timezoneEditorTitle" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
timezoneEditorTitle: "Timezones"
}
},
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.editor.titleString
The text similar to "Title of the event" displayed in the scheduler event editor.
Example - set the "title" scheduler editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
editor: {
title: "Title of the event"
}
},
dataSource: [
{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview"
}
]
});
</script>