I'm using ag-grid in my angular project. One of my columns uses checkboxes for filtering and has a search bar and a select all checkbox. When the select all box is unchecked when you searched for something, only the items that match the search term are deselected instead of everything.
This question was already asked on github : https://github.com/ag-grid/ag-grid/issues/1559. Here, the answer was given to set the selectAllOnminiFilter to false. However, in the changelog of ag-grid, it says the selectAllOnMiniFilter property is removed : https://www.ag-grid.com/ag-grid-changelog/ (key: AG-3383)
Is there a way to get this behavior without the selectAllOnminiFilter property?
