我想在 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) { }
我想要的是,当我选择它时,它将过滤我的商店。它应该告诉商店显示在线记录和/或离线记录。
我读了一些关于布尔过滤器的东西,所以也许这可以用,但我不知道怎么用。