-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add show_search and show_quick_filters to ui.table (#461)
Fixes #443, Fixes #444. Also removes `ui.table.quick_filter` to align with design doc. Drops `can_search` for now since it was not implemented according to spec ```py from deephaven import empty_table import deephaven.ui as ui t = empty_table(1000).update("X=ii") ui_table = ui.table(t, quick_filters={"X": ">50", "Y": "=20"}, show_quick_filters=True) ui_with_search = ui.table(t, show_search=True) ui_with_search_and_filter = ui.table(t, show_search=True, show_quick_filters=True) ```
- Loading branch information
1 parent
6732ad6
commit 4923017
Showing
7 changed files
with
146 additions
and
175 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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