in kendo grid filters are not working.only contains is workingCan y help me?
My code is as follows
$('#grid').kendoGrid({
//height : 325,
scrollable: true,
sortable: true,
pageable: {
input: true,
numeric: false
},
selectable: "row",
pageable: true,
sortable: true,
filterable: true,
dataSource: {
pageSize: 50,
@*transport: {
read: { url: '@Url.Action("GetGridFill", "Pariticipants")'
}
}*@
},
columns:
[ { field: "partID", title: "Participant ID", width: "125px", filterable: true }
, { field: "partName", title: "Participant Name", width: "150px", filterable: true }
, { field: "partOrgName", title: "Client Organisation", width: "150px", filterable: false }
, { field: "partEmail", title: "Email", width: "200px", filterable: false }
, { field: "partPhone", title: "Phone", width: "150px", filterable: false }
, { field: "partNosurvey", title: "No of Surveys", width: "100px", filterable: false }
, { field: "partPract", title: "Practitioner", width: "150px", filterable: false }
]
});
});