\Kendo\UI\FilterOperatorsString
A PHP class representing the string setting of FilterOperators.
Methods
contains
The text of the "contains" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->contains('value');
?>
doesnotcontain
The text of the "does not contain" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->doesnotcontain('value');
?>
endswith
The text of the "ends with" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->endswith('value');
?>
eq
The text of the "equal" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->eq('value');
?>
isempty
The text of the "isempty" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->isempty('value');
?>
isnotempty
The text of the "isnotempty" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->isnotempty('value');
?>
isnotnull
The text of the "isnotnull" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->isnotnull('value');
?>
isnotnullorempty
The text of the "isnotnullorempty" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->isnotnullorempty('value');
?>
isnull
The text of the "isnull" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->isnull('value');
?>
isnullorempty
The text of the "isnullorempty" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->isnullorempty('value');
?>
neq
The text of the "not equal" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->neq('value');
?>
startswith
The text of the "starts with" filter operator.
Returns
\Kendo\UI\FilterOperatorsString
Parameters
$value string
Example
<?php
$string = new \Kendo\UI\FilterOperatorsString();
$string->startswith('value');
?>