filterable.operators.numberObject
The texts of the filter operators that are displayed for columns which are bound to number fields.
Omitting an operator will exclude it from the DropDownList with the available operators.
In the following example, only the Equal to...
and Not equal to...
operators will be displayed in the operators DropDownList.
Example - setting the number operators
<div id="treelist"></div>
<script>
$("#treelist").kendoTreeList({
columns: [
{ field: "lastName" },
{ field: "position" },
{ field: "extension" }
],
dataSource: {
data: [
{ id: 1, parentId: null, lastName: "Jackson", position: "CEO", extension: 8241 },
{ id: 2, parentId: 1, lastName: "Weber", position: " VP, Engineering", extension: 8342 }
],
schema: {
model: {
fields: {
extension: { type: "number" }
}
}
}
},
filterable: {
extra: false,
operators: {
number: {
eq: "Equal to...",
neq: "Not equal to..."
}
}
}
});
</script>
filterable.operators.number.eqString
(default: "Is equal to")
The text of the eq
(equal to) filter operator.
filterable.operators.number.neqString
(default: "Is not equal to")
The text of the ne
(not equal to) filter operator.
filterable.operators.number.isnullString
(default: "Is null")
The text of the isnull
filter operator.
filterable.operators.number.isnotnullString
(default: "Is not null")
The text of the isnotnull
filter operator.
filterable.operators.number.gteString
(default: "Is greater than or equal to")
The text of the gte
(greater than or equal to) filter operator.
filterable.operators.number.gtString
(default: "Is greater than")
The text of the gt
(greater than) filter operator.
filterable.operators.number.lteString
(default: "Is less than or equal to")
The text of the lte
(less than or equal to) filter operator.
filterable.operators.number.ltString
(default: "Is less than")
The text of the lt
(less than) filter operator.
In this article