-
Notifications
You must be signed in to change notification settings - Fork 2.5k
fix(core): Do not clear condition when clearing all filters #5361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(core): Do not clear condition when clearing all filters #5361
Conversation
When a user clicks the grid menu's "clear all filters", do not remove the filter's 9possibly custom) `condition`. Fixes #4657
I'm not sure I understand what/why this change is necessary. What is the behaviour before without this fix? What is it now?? |
Sorry about that @JLLeitschuh, I thought it was explicit enough to say that Clear all filters should not remove filter More details are in the linked issue, particularly #4657 (comment) |
Currently hitting this bug. Anything can to do help move this forward? I've tested the change proposed and all looks good. |
I believe the majority of ui-grid developers have moved on or are really busy. They're currently looking to fill the the void, but I don't know when we'll see the next release :( |
I am in favor of merging this, but it will be a breaking change. @dlgski |
Hi All, Any updates on when this is likely to be merged, or is it going to be merged? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've been testing this change in production for several months without issue. Let me know if there is anything I can do to help get this merged
@drGarbinsky We will likely include it in the next big release. |
Current Behavior: Grid menu option Clear all filters removes all filter
condition
s as well as searchterm
s.Problem: Users expect Clear all filters to only remove search
term
s, but leavecondition
s as is so that filters can still be used to search the table. Essentially, we expect Clear all fitlers to be the same as going through each filter and clicking the small x next to it.Fix: Clear all filters only removes search
term
s and leavescondition
s as is.Fixes #4657