New to Telerik UI for PHP? Download free 30-day trial

\Kendo\UI\TimePickerMessages

A PHP class representing the messages setting of TimePicker.

Methods

cancel

Allows customization of the Cancel button text in the TimePicker.

Returns

\Kendo\UI\TimePickerMessages

Parameters

$value string

Example

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

hour

Allows customization of the Hour text in the TimePicker.

Returns

\Kendo\UI\TimePickerMessages

Parameters

$value string

Example

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

millisecond

Allows customization of the Millisecond text in the TimePicker.

Returns

\Kendo\UI\TimePickerMessages

Parameters

$value string

Example

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

minute

Allows customization of the Minute text in the TimePicker.

Returns

\Kendo\UI\TimePickerMessages

Parameters

$value string

Example

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

now

Allows customization of the Now text in the TimePicker.

Returns

\Kendo\UI\TimePickerMessages

Parameters

$value string

Example

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

second

Allows customization of the Second text in the TimePicker.

Returns

\Kendo\UI\TimePickerMessages

Parameters

$value string

Example

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

set

Allows customization of the Set button text in the TimePicker.

Returns

\Kendo\UI\TimePickerMessages

Parameters

$value string

Example

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