operators.booleanObject

The texts of the filter operators displayed for boolean fields

Omitting an operator will exclude it from the DropDownList with the available operators.

Example

<div id="filter"></div>
<script>
  var data = [
      { name: "Jane Doe", isManager: true },
      { name: "John Doe", isManager: false }
    ];

  var dataSource = new kendo.data.DataSource({
    data: data
  });

  $("#filter").kendoFilter({
    dataSource: dataSource,
    operators: {
        boolean: {
            eq: "Is equal to",
            neq: "Is not equal to"
        }
    },
    fields: [
      { name: "isManager", type: "boolean", label: "Is Manager" }
    ]
  });
</script>