\Kendo\UI\CalendarMessages

A PHP class representing the messages setting of Calendar.

Methods

Allows customization of the "Navigate to " text that would be used for title attribute of the Calendar title in the header. The label is also a button allowing navigation to parent view.

Returns

\Kendo\UI\CalendarMessages

Parameters

$value string

Example

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

parentViews

Allows customization of names of the views used in the title attribute of the Calendar title in the header. The label is also a button allowing navigation to parent view.

Returns

\Kendo\UI\CalendarMessages

Parameters

$value \Kendo\UI\CalendarMessagesParentViews|array

Example - using \Kendo\UI\CalendarMessagesParentViews

<?php
$messages = new \Kendo\UI\CalendarMessages();
$parentViews = new \Kendo\UI\CalendarMessagesParentViews();
$decade = 'value';
$parentViews->decade($decade);
$messages->parentViews($parentViews);
?>

Example - using array

<?php
$messages = new \Kendo\UI\CalendarMessages();
$decade = 'value';
$messages->parentViews(array('decade' => $decade));
?>

today

Allows customization of the text of the Today button present in the widget in its modern rendering.

Returns

\Kendo\UI\CalendarMessages

Parameters

$value string

Example

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

weekColumnHeader

Allows customization of the week column header text. Set the value to make the widget compliant with web accessibility standards.

Returns

\Kendo\UI\CalendarMessages

Parameters

$value string

Example

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