\Kendo\UI\DateTimePickerMessages

A PHP class representing the messages setting of DateTimePicker.

Methods

dateInput

The messages that DateInput uses. Use it to customize or localize the placeholders of each date/time part.

Returns

\Kendo\UI\DateTimePickerMessages

Parameters

$value \Kendo\UI\DateTimePickerMessagesDateInput|array

Example - using \Kendo\UI\DateTimePickerMessagesDateInput

<?php
$messages = new \Kendo\UI\DateTimePickerMessages();
$dateInput = new \Kendo\UI\DateTimePickerMessagesDateInput();
$day = 'value';
$dateInput->day($day);
$messages->dateInput($dateInput);
?>

Example - using array

<?php
$messages = new \Kendo\UI\DateTimePickerMessages();
$day = 'value';
$messages->dateInput(array('day' => $day));
?>

weekColumnHeader

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

Returns

\Kendo\UI\DateTimePickerMessages

Parameters

$value string

Example

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