\Kendo\UI\TreeListFilterableOperatorsString

A PHP class representing the string setting of TreeListFilterableOperators.

Methods

contains

The text of the contains filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

doesnotcontain

The text of the doesnotcontain filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

endswith

The text of the endswith filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

eq

The text of the eq (equal to) filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

isempty

The text of the isempty filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

isnotempty

The text of the isnotempty filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

isnotnull

The text of the isnotnull filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

isnull

The text of the isnull filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

neq

The text of the ne (not equal to) filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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

startswith

The text of the startswith filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsString

Parameters

$value string

Example

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