\Kendo\UI\TreeListFilterableOperatorsNumber

A PHP class representing the number setting of TreeListFilterableOperators.

Methods

eq

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

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

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

gt

The text of the gt (greater than) filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

<?php
$number = new \Kendo\UI\TreeListFilterableOperatorsNumber();
$number->gt('value');
?>

gte

The text of the gte (greater than or equal to) filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

<?php
$number = new \Kendo\UI\TreeListFilterableOperatorsNumber();
$number->gte('value');
?>

isnotnull

The text of the isnotnull filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

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

isnull

The text of the isnull filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

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

lt

The text of the lt (less than) filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

<?php
$number = new \Kendo\UI\TreeListFilterableOperatorsNumber();
$number->lt('value');
?>

lte

The text of the lte (less than or equal to) filter operator.

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

<?php
$number = new \Kendo\UI\TreeListFilterableOperatorsNumber();
$number->lte('value');
?>

neq

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

Returns

\Kendo\UI\TreeListFilterableOperatorsNumber

Parameters

$value string

Example

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