如何在Extjs 4.2中的单列网格上应用多个过滤器

时间:2016-10-25 10:06:55

标签: extjs filter grid

例如,我有网格enter image description here

我可以在单列上应用不同类型的过滤器吗?

1 个答案:

答案 0 :(得分:1)

这不是这么简单,但您可以使用事件headertriggerclick在标题菜单中添加项目。然后,您可以添加自定义功能,在其中添加另一个过滤器。

this.on('headertriggerclick', function(ct) {
    var grid = ct.grid;
    var menu = ct.getMenu();

    menu.items // Add custom items here, you can copy the existing filter item (should be the last one)
});