Is it possible to filter few values in ag grid split by commas?
For example if i search aa,bb,cc - I want to get all rows that contains on of these values - aa or bb or cc.
my code now works only for one value:
onFilterTextBoxChanged(value) {
this.gridOptions.api.setQuickFilter(value);
},
The way I found to do it is using: ag-grid.com/javascript-grid-filter-external And write all the logic by myself.