If you want to limit the filter options:
- Add extra: false
- Define only the operators you want
Code example:
$('#grid').kendoGrid({
dataSource: dataSource,
height: '240px',
columns: [
{ field: 'Id' },
{ field: 'Number', title: 'Employee #' },
{ field: 'First', title: 'FirstName' },
{ field: 'LastName', title: 'LastName' },
{
field: 'FunctionCode', title: 'Function', filterable: {
extra: false,
operators: {
string: {
eq: "Is equal to",
neq: "Is not equal to"
}
}
}
}
]
});
See Kendo UI Grid running demo here.
And see this page for an example.