\Kendo\UI\MultiSelectMessages
A PHP class representing the messages setting of MultiSelect.
Methods
clear
The text message when hovering the input clear button.
Returns
\Kendo\UI\MultiSelectMessages
Parameters
$value string
Example
<?php
$messages = new \Kendo\UI\MultiSelectMessages();
$messages->clear('value');
?>
deleteTag
The text message shown when hovering delete icon in a selected tag.
Returns
\Kendo\UI\MultiSelectMessages
Parameters
$value string
Example
<?php
$messages = new \Kendo\UI\MultiSelectMessages();
$messages->deleteTag('value');
?>
downArrow
Specifies the text that will be used for the MultiSelect downArrow title attribute.
Returns
\Kendo\UI\MultiSelectMessages
Parameters
$value string
Example
<?php
$messages = new \Kendo\UI\MultiSelectMessages();
$messages->downArrow('value');
?>
noData
The text message shown in the noDataTemplate when no data is available in the widget drop-down.
Returns
\Kendo\UI\MultiSelectMessages
Parameters
$value string
Example
<?php
$messages = new \Kendo\UI\MultiSelectMessages();
$messages->noData('value');
?>
singleTag
The text message shown in the single TagMode tag.
Returns
\Kendo\UI\MultiSelectMessages
Parameters
$value string
Example
<?php
$messages = new \Kendo\UI\MultiSelectMessages();
$messages->singleTag('value');
?>