\Kendo\UI\TreeListFilterableMessages

A PHP class representing the messages setting of TreeListFilterable.

Methods

_and

The text of the option which represents the AND logical operation.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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

clear

The text of the button which clears the filter.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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

filter

The text of the button which applies the filter.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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

info

The text of the information message on top of the filter menu.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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

isFalse

The text of the radio button for false values. Displayed when the user filters Boolean fields.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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

isTrue

The text of the radio button for true values. Displayed when the user filters Boolean fields.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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

_or

The text of the option which represents the OR logical operation.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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

title

The text that is rendered for the title attribute of the filter menu form.

Returns

\Kendo\UI\TreeListFilterableMessages

Parameters

$value string

Example

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