\Kendo\UI\GridFilterableMessages

A PHP class representing the messages setting of GridFilterable.

Methods

additionalOperator

The text displayed in the tooltip of the additional operator item in filter menu.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

additionalValue

The text displayed in the tooltip of the additional value item in filter menu.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

_and

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

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

buttonTitle

The title of the button that displays the FilterMenu.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

checkAll

The label used for the check-all checkbox.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

clear

The text of the button which clears the filter.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

filter

The text of the button which applies the filter.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

info

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

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

isFalse

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

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

isTrue

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

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

logic

The text displayed in the tooltip of the logic item in filter menu.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

operator

The text displayed in the tooltip of the operator item in filter menu.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

_or

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

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

The placeholder of the search input for columns with the search option set to true.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

selectValue

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

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

selectedItemsFormat

The format string for selected items count in filter menu when search option set to true.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

title

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

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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

value

The text displayed in the tooltip of the value item in filter menu.

Returns

\Kendo\UI\GridFilterableMessages

Parameters

$value string

Example

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