\Kendo\UI\TreeListColumnMenuMessages

A PHP class representing the messages setting of TreeListColumnMenu.

Methods

columns

The text message that is displayed for the column selection menu item.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

filter

The text message that is displayed for the filter menu item.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

lock

The text message that is displayed in the column menu when locking a column.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

moveNext

The text message that is displayed for the Move to next position column menu item.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

movePrev

The text message that is displayed for the Move to previous position column menu item.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

settings

The text message that is displayed in the menu header.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

sortAscending

The text message that is displayed for the menu item which performs the ascending sort mode.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

sortDescending

The text message that is displayed for the menu item which performs the descending sort mode.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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

unlock

The text message that is displayed in the column menu for unlocking a column.

Returns

\Kendo\UI\TreeListColumnMenuMessages

Parameters

$value string

Example

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