messages.recurrenceEditor.offsetPositionsObject
The configuration of the scheduler recurrence editor offsetPositions
messages. Use this option to customize or localize the scheduler recurrence editor offsetPositions
messages.
messages.recurrenceEditor.offsetPositions.firstString
The text similar to "first" displayed in the scheduler recurrence editor.
Example - set the "first" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
offsetPositions: {
first: "first"
}
}
},
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.offsetPositions.secondString
The text similar to "second" displayed in the scheduler recurrence editor.
Example - set the "second" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
offsetPositions: {
second: "second"
}
}
},
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.offsetPositions.thirdString
The text similar to "third" displayed in the scheduler recurrence editor.
Example - set the "third" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
offsetPositions: {
third: "third"
}
}
},
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.offsetPositions.fourthString
The text similar to "fourth" displayed in the scheduler recurrence editor.
Example - set the "fourth" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
offsetPositions: {
fourth: "fourth"
}
}
},
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.offsetPositions.lastString
The text similar to "last" displayed in the scheduler recurrence editor.
Example - set the "last" scheduler recurrence editor message
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
messages: {
recurrenceEditor: {
offsetPositions: {
last: "last"
}
}
},
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