Search code examples
ag-gridag-grid-vue

How to search few values in quick filter using commas - ag grid


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);
    },


Solution

  • The way I found to do it is using: ag-grid.com/javascript-grid-filter-external And write all the logic by myself.