\Kendo\UI\TreeListFilterableOperatorsDate
A PHP class representing the date setting of TreeListFilterableOperators.
Methods
eq
The text of the eq (equal to) filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->eq('value');
?>
gt
The text of the gt (greater than) filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->gt('value');
?>
gte
The text of the gte (greater than or equal to) filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->gte('value');
?>
isnotnull
The text of the isnotnull filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->isnotnull('value');
?>
isnull
The text of the isnull filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->isnull('value');
?>
lt
The text of the lt (less than) filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->lt('value');
?>
lte
The text of the "lte" (less than or equal to) filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->lte('value');
?>
neq
The text of the ne (not equal to) filter operator.
Returns
\Kendo\UI\TreeListFilterableOperatorsDate
Parameters
$value string
Example
<?php
$date = new \Kendo\UI\TreeListFilterableOperatorsDate();
$date->neq('value');
?>