operators.string.isnullString(default: "Is null")

The text of the "isnull" filter operator.

Example

<div id="filter"></div>
<script>
  var data = [
      { name: "Jane Doe", age: 30 },
      { name: "John Doe", age: 33 }
    ];

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

  $("#filter").kendoFilter({
    dataSource: dataSource,
    operators: {
        string: {
            isnull: "Is null value"
        }
    },
    fields: [
      { name: "name", type: "string", label: "Name" }
    ]
  });
</script>
In this article
operators.string.isnull
Not finding the help you need?
Contact Support