有没有办法在kendo网格上捕获过滤器更改事件?我需要在我的页面上更改过滤器时运行一些逻辑。
http://demos.telerik.com/kendo-ui/grid/filter-menu-customization
答案 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
},