kendo combobox datasource filtering before bind is not working

1k views Asked by At

I am working on a web application using kendo UI. I have a kendo combobox and binding via remote datasource. I need to filter kendo combobox datasource before binding.

here's my code:

$("#abc").kendoComboBox({
        dataSource:{
            type: "odata",
            transport: {
                read: "http://demos.kendoui.com/service/Northwind.svc/Orders"
            },     
            filter: { field: 'Freight', operator: 'neq', value: 11.61 }           
        }, 
        dataTextField: 'Freight',
        dataValueField: 'Freight'
    });

JSFiddle

Any help?

1

There are 1 answers

0
user2176191 On BEST ANSWER

I have fixed by using oData filtering.Here's my code. jsfiddle.net/MG89G/1497.