Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is not ready for review but I am putting this up just in case as I know Bender mentioned possibly working on some of the js functionality while I am on vacation. What's implemented is not thoroughly tested, needs to be refactored, and subject to change but I have sorts, quick filters, and the search bar hooked up. Example: ``` from deephaven import SortDirection import deephaven.ui as ui import deephaven.plot.express as dx stocks = dx.data.stocks() @ui.component def searchable_filtered_sorted_table(source): return [ ui.panel( ui.table(source) .sort("price", SortDirection.DESCENDING) .quick_filter({"side": "sell"}) .can_search("SHOW"), title="Stock Table I", ) ] sti = searchable_filtered_sorted_table(stocks) ```
- Loading branch information