\Kendo\UI\ListBoxMessagesTools
A PHP class representing the tools setting of ListBoxMessages.
Methods
moveDown
Defines the text of the Move Down button that is located in the toolbar of the ListBox.
Returns
\Kendo\UI\ListBoxMessagesTools
Parameters
$value string
Example
<?php
$tools = new \Kendo\UI\ListBoxMessagesTools();
$tools->moveDown('value');
?>
moveUp
Defines the text of the Move Up button that is located in the toolbar of the ListBox.
Returns
\Kendo\UI\ListBoxMessagesTools
Parameters
$value string
Example
<?php
$tools = new \Kendo\UI\ListBoxMessagesTools();
$tools->moveUp('value');
?>
remove
Defines the text of the Delete button that is located in the toolbar of the ListBox.
Returns
\Kendo\UI\ListBoxMessagesTools
Parameters
$value string
Example
<?php
$tools = new \Kendo\UI\ListBoxMessagesTools();
$tools->remove('value');
?>
transferAllFrom
Defines the text of the Transfer All From button that is located in the toolbar of the ListBox.
Returns
\Kendo\UI\ListBoxMessagesTools
Parameters
$value string
Example
<?php
$tools = new \Kendo\UI\ListBoxMessagesTools();
$tools->transferAllFrom('value');
?>
transferAllTo
Defines the text of the Transfer All To button that is located in the toolbar of the ListBox.
Returns
\Kendo\UI\ListBoxMessagesTools
Parameters
$value string
Example
<?php
$tools = new \Kendo\UI\ListBoxMessagesTools();
$tools->transferAllTo('value');
?>
transferFrom
Defines the text of the Transfer From button that is located in the toolbar of the ListBox.
Returns
\Kendo\UI\ListBoxMessagesTools
Parameters
$value string
Example
<?php
$tools = new \Kendo\UI\ListBoxMessagesTools();
$tools->transferFrom('value');
?>
transferTo
Defines the text of the Transfer To button that is located in the toolbar of the ListBox.
Returns
\Kendo\UI\ListBoxMessagesTools
Parameters
$value string
Example
<?php
$tools = new \Kendo\UI\ListBoxMessagesTools();
$tools->transferTo('value');
?>