kendo 绑定前的组合框数据源过滤不起作用

kendo combobox datasource filtering before bind is not working

我正在使用 kendo UI 开发 Web 应用程序。我有一个 kendo 组合框并通过远程数据源进行绑定。我需要在绑定前过滤 kendo 组合框数据源。

这是我的代码:

$("#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

有什么帮助吗?

我已经使用 oData filtering.Here 的代码修复了问题。 jsfiddle.net/MG89G/1497.