0
我有我可以過濾網格的文本框,問題是它不能過濾所有列,但只有其中一個,所以我想過濾所有列的文本框輸入任何值,甚至它是type or name or email or something
,就像一個gridsearch。我的代碼感謝Extjs 6-過濾網格
片段:
xtype: 'textfield',
label: 'search',
emptyText: 'Enter type...',
listeners: {
change: function (field, value) {
var grid = this.up('grid'),
store = grid.getStore();
if (!value) {
store.getFilters().removeAll();
} else {
store.filter([{property:'type',//can be other property
value:value}]);
}
}
}
謝謝,它很有用,:) – Joy