Adding filters to COLUMN_ARRAY_NESTED_FUNCTIONS#413
Merged
BSd3v merged 14 commits intoplotly:mainfrom Dec 18, 2025
Merged
Conversation
Collaborator
|
I ran this and it works fine. Solves the issue. |
Collaborator
|
Please also add a changelog. |
Removed duplicate entry for issue plotly#412 in the changelog.
Contributor
Author
|
@BSd3v Added. |
Collaborator
|
Great, thank you. Could you please add a test for this? |
…d into multifilterFunction
Contributor
Author
|
@BSd3v I add a test, I would like you to review it, I'm not 100% sure about it...I'm open to any feedback. |
BSd3v
reviewed
Dec 10, 2025
tests/test_custom_filter.py
Outdated
Comment on lines
304
to
315
| # Uncheck "Select All" | ||
| dash_duo.find_element('.ag-set-filter-list .ag-set-filter-item .ag-checkbox-input').click() | ||
|
|
||
| # Select "24/08/2008" | ||
| set_filter_items = dash_duo.find_elements('.ag-set-filter-list .ag-virtual-list-item') | ||
| for item in set_filter_items: | ||
| if "24/08/2008" in item.text: | ||
| item.find_element_by_css_selector('.ag-checkbox-input').click() | ||
| break | ||
|
|
||
| # Apply | ||
| dash_duo.find_element('button[ref="applyFilterButton"]').click() |
Collaborator
There was a problem hiding this comment.
My guess is that this is executing too fast, you need to make sure that the options are actually showing before trying to click or interact.
You can use wait_until or something similar.
Contributor
Author
There was a problem hiding this comment.
Ok, I will try that! Thanks!
BSd3v
added a commit
to BSd3v/dash-ag-grid-real
that referenced
this pull request
Dec 19, 2025
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
issue #412