\Kendo\UI\ListBoxMessages

A PHP class representing the messages setting of ListBox.

Methods

tools

Defines the localization texts for tools in the ListBox. Texts are used when you configure the tooltip and accessibility support.

Returns

\Kendo\UI\ListBoxMessages

Parameters

$value \Kendo\UI\ListBoxMessagesTools|array

Example - using \Kendo\UI\ListBoxMessagesTools

<?php
$messages = new \Kendo\UI\ListBoxMessages();
$tools = new \Kendo\UI\ListBoxMessagesTools();
$moveDown = 'value';
$tools->moveDown($moveDown);
$messages->tools($tools);
?>

Example - using array

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