\Kendo\UI\TimePickerLabel
A PHP class representing the label setting of TimePicker.
Methods
content
Sets the HTML content of the TimePickerLabel.
Returns
TimePickerLabel
$value string
Example
<?php
$label = new \Kendo\UI\TimePickerLabel();
$label->content('<strong>Content</strong>');
?>
floating
If set to true, the widget will be wrapped in a container that will allow the fl oating label functionality.
Returns
\Kendo\UI\TimePickerLabel
Parameters
$value boolean
Example
<?php
$label = new \Kendo\UI\TimePickerLabel();
$label->floating(true);
?>