Hello!
Can you tell me which function calls or conditions exist, besides removefilter and clearfilters, that remove the filters from the grid? I thought the filters would remain on the grid until they were removed, however, the grids in my application are regularly disappearing when going through certain workflows.
For instance, just disabling the grid removes any and all filters from the grid. See the following:
https://codesandbox.io/s/disabling-grid-resets-to-page-1-nbkxv5?file=/src/app/app.component.html
Steps to reproduce:
1. On the Quantity per Unit column, set the filter to be “equal” to 10 and click the Filter button.
2. Click the Disable Grid button (which simply sets the “disabled” grid attribute to true). You’ll see the filter is removed.
This seems like a bug as I would want the filters to remain as long as I need them and calling removefilter as-needed (which is what the function is for, specifically removing filters vs. having them removed randomly).
Thank you!
Chuck