ag-grid gridApi.setFilterModel() model with multiple conditions [angular6]
问题 I want to filter my table based on a set of rules. I found that this was possible to do via filtermodels and conditions. I tried to stack conditions but that doesn't seem to work. e.g. This works Filter = { columnName: { condition1 : { type: 'contains', filter: 'searchstring1', }, operator: 'AND', condition2 : { type: 'contains', filter: 'searchstring2', }, }, }; This does not work. Filter = { columnName: { condition1 : { condition1 : { type: 'contains', filter: 'searchstring1', }, operator: