filterable.operators.number Object

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.eq String (default: "Is equal to")

The text of the eq (equal to) filter operator.

filterable.operators.number.neq String (default: "Is not equal to")

The text of the ne (not equal to) filter operator.

filterable.operators.number.isnull String (default: "Is null")

The text of the isnull filter operator.

filterable.operators.number.isnotnull String (default: "Is not null")

The text of the isnotnull filter operator.

filterable.operators.number.gte String (default: "Is greater than or equal to")

The text of the gte (greater than or equal to) filter operator.

filterable.operators.number.gt String (default: "Is greater than")

The text of the gt (greater than) filter operator.

filterable.operators.number.lte String (default: "Is less than or equal to")

The text of the lte (less than or equal to) filter operator.

filterable.operators.number.lt String (default: "Is less than")

The text of the lt (less than) filter operator.

In this article