\Kendo\UI\FilterMenuMessages

A PHP class representing the messages setting of FilterMenu.

Methods

additionalOperator

The text of the additional filter operator editor.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

additionalValue

The text of the additional filter value editor.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

_and

The text of the option which represents the "and" logical operation.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

buttonTitle

The title of the button that displays the FilterMenu.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

clear

The text of the button which clears the filter.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

filter

The text of the button which applies the filter.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

info

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

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

isFalse

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

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

isTrue

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

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

logic

The text of the filter logic editor.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

_or

The text of the option which represents the "or" logical operation.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

selectValue

The text of the DropDownList displayed in the filter menu for columns whose values option is set.

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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

title

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

Returns

\Kendo\UI\FilterMenuMessages

Parameters

$value string

Example

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