I have ag-grid
and I set filter for columns:
"filter": 'agTextColumnFilter',
"filterParams": {
"filterOptions": ['equals', 'notEqual'],
and I can have only two values for filter:
Starts with hhh AND Starts with
But I want to have three or more properties, for example: aaa AND bbb AND ccc AND ddd
Allows Ag-grid for that?
If you want to apply conditions b/w more than two parameters, you will need to implement your own IFilterAngularComp.
https://www.ag-grid.com/javascript-grid-filter-component/#filter-component
It's possible to have more than 2 condition in ag-grid text filter?