带有OData的Kendo网格过滤器事件

我有一个剑道格与dataSource和数据源的具有以下选项:

type: "odata-v4",
serverFiltering: true,
serverPaging: true,
serverSorting: true

在网格选项中,我有以下几点:

sortable: true,
resizable: true,
reorderable: true,
filterable: true,
filter: function(e) {
   console.log(e)
},

但是, filter事件从不会触发。 是否有可能执行服务器端过滤并使filter事件触发? 在dataSource执行任何操作并扩展过滤器之前,我需要掌握过滤器,因此宁愿在没有为dataSource编写自定义代码的情况下执行此操作。

编辑我在我试图陷入的列上有一个自定义过滤器。


网格的filter事件在Kendo UI版本2016.3.914中引入 - 如果您使用的是旧版本,请升级。

链接地址: http://www.djcxy.com/p/70439.html

上一篇: Kendo Grid filter event with OData

下一篇: Kendo UI Grid: How to change cell text based on a bit value