过滤extjs中的网格数据

时间:2012-08-10 09:58:29

标签: extjs filter grid

我想在extjs中使用复选框来过滤网格。这是我的复选框

xtype: 'checkboxfield',
id: 'cb1',
boxLabel: 'Online',
checked: true,
handler: function (field, value) { }

xtype: 'checkboxfield',
id: 'cb2',
boxLabel: 'offline',
checked: true,
handler: function (field, value) { }

我想要的是,当我选择它时,它会过滤我的商店。它应该告诉商店显示在线记录和/或离线记录。

我读了一些关于布尔过滤器的东西,所以也许这是可以使用但我无法找到的方法。

1 个答案:

答案 0 :(得分:2)

在您的处理程序上使用商店的过滤方法,例如

handler: function (field, value) { 
    store.filter('online', value);
}