\Kendo\UI\SchedulerMessages

A PHP class representing the messages setting of Scheduler.

Methods

allDay

The text similar to "all day" displayed in day,week and agenda views.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->allDay('value');
?>

ariaEventLabel

Specifies the format string used to populate the aria-label attribute value of the selected event element.The arguments which can be used in the format string are: {0} - represents the title of the selected event.; {1} - represents the start date of the event. or {2} - represents the start time of the event..

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->ariaEventLabel('value');
?>

ariaSlotLabel

Specifies the format string used to populate the aria-label attribute value of the selected slot element.The arguments which can be used in the format string are: {0} - represents the start date of the slot. or {1} - represents the end date of the slot..

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->ariaSlotLabel('value');
?>

cancel

The text similar to "Cancel" displayed in scheduler.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->cancel('value');
?>

date

The text similar to "Date" displayed in scheduler.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->date('value');
?>

defaultRowText

The text similar to "All events" displayed in timeline views when there is no vertical grouping.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->defaultRowText('value');
?>

deleteWindowTitle

The text similar to "Delete event" displayed as title of the scheduler delete event window.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->deleteWindowTitle('value');
?>

destroy

The text similar to "Delete" displayed in scheduler.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->destroy('value');
?>

editable

The configuration of the scheduler editable messages. Use this option to customize or localize the scheduler editable messages.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value \Kendo\UI\SchedulerMessagesEditable|array

Example - using \Kendo\UI\SchedulerMessagesEditable

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$editable = new \Kendo\UI\SchedulerMessagesEditable();
$confirmation = 'value';
$editable->confirmation($confirmation);
$messages->editable($editable);
?>

Example - using array

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$confirmation = 'value';
$messages->editable(array('confirmation' => $confirmation));
?>

editor

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

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value \Kendo\UI\SchedulerMessagesEditor|array

Example - using \Kendo\UI\SchedulerMessagesEditor

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$editor = new \Kendo\UI\SchedulerMessagesEditor();
$allDayEvent = 'value';
$editor->allDayEvent($allDayEvent);
$messages->editor($editor);
?>

Example - using array

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$allDayEvent = 'value';
$messages->editor(array('allDayEvent' => $allDayEvent));
?>

event

The text similar to "Event" displayed in scheduler.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->event('value');
?>

next

The tooltip of the next navigation button.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->next('value');
?>

noData

The text displayed in the Scheduler year view Tooltip when there are no events on the selected date.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->noData('value');
?>

pdf

The text displayed by the PDF export button.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->pdf('value');
?>

previous

The tooltip of the previous navigation button.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->previous('value');
?>

recurrenceEditor

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

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value \Kendo\UI\SchedulerMessagesRecurrenceEditor|array

Example - using \Kendo\UI\SchedulerMessagesRecurrenceEditor

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$recurrenceEditor = new \Kendo\UI\SchedulerMessagesRecurrenceEditor();
$cancel = 'value';
$recurrenceEditor->cancel($cancel);
$messages->recurrenceEditor($recurrenceEditor);
?>

Example - using array

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$cancel = 'value';
$messages->recurrenceEditor(array('cancel' => $cancel));
?>

recurrenceMessages

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

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value \Kendo\UI\SchedulerMessagesRecurrenceMessages|array

Example - using \Kendo\UI\SchedulerMessagesRecurrenceMessages

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$recurrenceMessages = new \Kendo\UI\SchedulerMessagesRecurrenceMessages();
$deleteRecurring = 'value';
$recurrenceMessages->deleteRecurring($deleteRecurring);
$messages->recurrenceMessages($recurrenceMessages);
?>

Example - using array

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$deleteRecurring = 'value';
$messages->recurrenceMessages(array('deleteRecurring' => $deleteRecurring));
?>

refresh

The aria-label of the refresh toolbar button.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->refresh('value');
?>

resetSeries

The text of the reset series button.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->resetSeries('value');
?>

save

The text similar to "Save" displayed in scheduler.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->save('value');
?>

The Search input title and placeholder text.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->search('value');
?>

selectView

The aria-label of the View select element.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->selectView('value');
?>

showFullDay

The text similar to "Show full day" used in scheduler "showFullDay" button.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->showFullDay('value');
?>

showWorkDay

The text similar to "Show business hours" used in scheduler "showWorkDay" button.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->showWorkDay('value');
?>

time

The text similar to "Time" displayed in scheduler.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->time('value');
?>

today

The text similar to "Today" displayed in scheduler.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value string

Example

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$messages->today('value');
?>

views

The configuration of the scheduler views messages. Use this option to customize or localize the scheduler views messages.

Returns

\Kendo\UI\SchedulerMessages

Parameters

$value \Kendo\UI\SchedulerMessagesViews|array

Example - using \Kendo\UI\SchedulerMessagesViews

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$views = new \Kendo\UI\SchedulerMessagesViews();
$agenda = 'value';
$views->agenda($agenda);
$messages->views($views);
?>

Example - using array

<?php
$messages = new \Kendo\UI\SchedulerMessages();
$agenda = 'value';
$messages->views(array('agenda' => $agenda));
?>
In this article
Not finding the help you need?