\Kendo\UI\TextBoxLabel

A PHP class representing the label setting of TextBox.

Methods

content

Sets the HTML content of the TextBoxLabel.

Returns

TextBoxLabel

$value string

Example

<?php
$label = new \Kendo\UI\TextBoxLabel();
$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\TextBoxLabel

Parameters

$value boolean

Example

<?php
$label = new \Kendo\UI\TextBoxLabel();
$label->floating(true);
?>
In this article
Not finding the help you need?