I've enabled filtering on a few columns. However, I don't see how the filtering is supposed to work. There has been no change in the appearance of the header (or the headers of any other columns) and there is no apparent way to filter any columns. Am I doing something wrong or looking in the wrong place for filtering? Here's the code:
$("#grid").kendoGrid({
dataSource: {
type: "json",
transport: {
read: {
url: "Home/GetWorklist",
dataType: "json",
type: "GET",
contentType: "application/json; charset=1-8"
}
},
pageSize: 15,
schema: {
data: "data",
total: "total"
}
},
columns: [
{ title: "Part Number", field: "PartNumber", template: "#= PartNumber #" },
{ title: "Noun", field: "Noun", filterable: true },
{ title: "Procurement Code", field: "ProcurementCode", filterable: true },
{ title: "Cage Code", field: "CageCode" },
{ title: "Responsible", field: "Responsible" },
{ title: "SONIC Queue", field: "SonicQueue" },
{ title: "SONIC Status", field: "SonicStatus" },
{ title: "Priority", field: "Priority" },
{ title: "DIS", field: "Dis", width: 50 },
{ title: "QIS", field: "Qis" },
{ title: "Status", field: "Status" },
{ title: "Estimator", field: "Estimator" },
{ title: "Related Parts", field: "RelatedParts" }
],
pageable: true,
sortable: true
});