operators.string.containsString(default: "Contains")

The text of the "contains" 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: {
            contains: "Includes"
        }
    },
    fields: [
      { name: "name", type: "string", label: "Name" }
    ]
  });
</script>
In this article
operators.string.contains
Not finding the help you need?
Contact Support