operatorsObject
The text of the filter operators displayed in the filter menu.
If
operatorsare defined manually, then the default messages will be overridden too. If you would like to control theoperatorsand still use the default messages,
then you will need to retrieve them from the FilterCell prototype - kendo.ui.FilterCell.fn.options.operators.{type}, where type can be "string", "date", "number" and "enums".
Example
<div id="filtermenu"></div>
<script>
$("#filtermenu").kendoFilterMenu({
dataSource: [
{ name: "John", age: 25 },
{ name: "Jane", age: 30 }
],
field: "name",
operators: {
string: {
eq: "Equals",
neq: "Not Equals",
contains: "Contains"
}
}
});
</script>