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