\Kendo\UI\DropDownTreeMessages

A PHP class representing the messages setting of DropDownTree.

Methods

clear

The text message when hovering the clear button.

Returns

\Kendo\UI\DropDownTreeMessages

Parameters

$value string

Example

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

deleteTag

The text message shown when hovering delete icon in a selected tag.

Returns

\Kendo\UI\DropDownTreeMessages

Parameters

$value string

Example

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

noData

The text message shown in the noDataTemplate when no data is available in the widget drop-down.

Returns

\Kendo\UI\DropDownTreeMessages

Parameters

$value string

Example

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

singleTag

The text message shown in the single TagMode tag.

Returns

\Kendo\UI\DropDownTreeMessages

Parameters

$value string

Example

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