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