Hi ,
I have a kendo grid with angular data source. Generic search is required in angularjs for kendo grid. I mean a text box out of grid which can filter the angular datasource.
Tried so many ways using jquery data filter but couldn't work.
$scope.GridData = {
dataSource: {
type: "json",
transport: {
read: '/Home/GetData'
},
pageSize: 10
},
columns: [{ field: "TaskID", title: "TaskID", width: "150px" },
{ field: "ShortDesc", title: "Task Description", width: "200px" },
{ field: "TaskInitiatorName", title: "Task Initiator", width: "120px" },
{ field: "TaskCategory", title: "TaskCategory", width: "120px" }]
};
This is data source and below is filter which is working in jquery but not working in angularjs.
$scope.GridData.filter({ field: "TaskStatus", operator: "contains", value: val });
Gimme some references if possible to deal with kendo angularjs.
Thanks.