\Kendo\UI\GridFilterableOperatorsString

A PHP class representing the string setting of GridFilterableOperators.

Methods

contains

The text of the "contains" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->contains('value');
?>

doesnotcontain

The text of the "does not contain" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->doesnotcontain('value');
?>

doesnotendwith

The text of the "does not end with" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->doesnotendwith('value');
?>

doesnotstartwith

The text of the "does not start with" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->doesnotstartwith('value');
?>

endswith

The text of the "ends with" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->endswith('value');
?>

eq

The text of the "equal" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->eq('value');
?>

isempty

The text of the "isempty" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->isempty('value');
?>

isnotempty

The text of the "isnotempty" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->isnotempty('value');
?>

isnotnull

The text of the "isnotnull" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->isnotnull('value');
?>

isnull

The text of the "isnull" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->isnull('value');
?>

neq

The text of the "not equal" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

<?php
$string = new \Kendo\UI\GridFilterableOperatorsString();
$string->neq('value');
?>

startswith

The text of the "starts with" filter operator.

Returns

\Kendo\UI\GridFilterableOperatorsString

Parameters

$value string

Example

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