-
Notifications
You must be signed in to change notification settings - Fork 271
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
feat: column filters #1652
feat: column filters #1652
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
marimo/_plugins/ui/_impl/table.py
Outdated
self._filtered_manager = self._manager | ||
return [] | ||
|
||
if args.filters: | ||
# TODO: don't allow no polars and pandas to get here |
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.
Just checking if this needs to be addressed now or if it's fine to get to later
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.
oh woops - i did this already, forgot to remove the todo
🚀 Development release published. You may be able to view the changes at https://marimo.app?v=0.6.22-dev1 |
📝 Summary
Closes #950
This adds "contains" and "range" filters to
mo.ui.table
. Specs:contains
and is case-sensitive)<= X
,>= X
,== X
,X - Y
Not support types:
This works for:
But does not work for (yet)