\Kendo\UI\GridFilterableOperatorsEnums
A PHP class representing the enums setting of GridFilterableOperators.
Methods
eq
The text of the "equal" filter operator.
Returns
\Kendo\UI\GridFilterableOperatorsEnums
Parameters
$value string
Example
<?php
$enums = new \Kendo\UI\GridFilterableOperatorsEnums();
$enums->eq('value');
?>
isnotnull
The text of the "isnotnull" filter operator.
Returns
\Kendo\UI\GridFilterableOperatorsEnums
Parameters
$value string
Example
<?php
$enums = new \Kendo\UI\GridFilterableOperatorsEnums();
$enums->isnotnull('value');
?>
isnull
The text of the "isnull" filter operator.
Returns
\Kendo\UI\GridFilterableOperatorsEnums
Parameters
$value string
Example
<?php
$enums = new \Kendo\UI\GridFilterableOperatorsEnums();
$enums->isnull('value');
?>
neq
The text of the "not equal" filter operator.
Returns
\Kendo\UI\GridFilterableOperatorsEnums
Parameters
$value string
Example
<?php
$enums = new \Kendo\UI\GridFilterableOperatorsEnums();
$enums->neq('value');
?>