捕获Kendo UI网格过滤器更改了事件

时间:2014-09-04 20:25:50

标签: kendo-ui kendo-grid

有没有办法在ken​​do网格上捕获过滤器更改事件?我需要在我的页面上更改过滤器时运行一些逻辑。

http://demos.telerik.com/kendo-ui/grid/filter-menu-customization

1 个答案:

答案 0 :(得分:2)

你只需绑定"更改"数据源上的事件,此事件将在过滤器运行后触发(在其他时候,例如填充数据源时)

dataSource: {
    data: createRandomData(50),
    schema: {
        model: {
            fields: {
                City: { type: "string" },
                Title: { type: "string" },
                BirthDate: { type: "date" }
            }
        }
    },
    change: function(e) {
        Console.log('filtered'); //this will fire after filtered.
    },
    pageSize: 15
},