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