search.fields.operator String
Defines the operator for the field to be used in the filter expression: filter.
Example - specify which fields will be included in the search
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: [ { name: "Jane", age: 30 }, { name: "John", age: 33 }],
toolbar:["search"],
search: {
fields: ["name", { name: "age", operator: "eq" }]
}
});
</script>