This is a migrated thread and some comments may be shown as answers.

angularjs kendo filters

0 Answers 84 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Surya
Top achievements
Rank 1
Surya asked on 16 Jun 2015, 09:35 AM

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.

No answers yet. Maybe you can help?

Tags
Grid
Asked by
Surya
Top achievements
Rank 1
Share this question
or