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'
    });
Any help?
                        
I have fixed by using oData filtering.Here's my code. jsfiddle.net/MG89G/1497.