feat: DH-19818: Nested dashboards, complex homepage layout#1238
Closed
mofojed wants to merge 6 commits intodeephaven:mainfrom
Closed
feat: DH-19818: Nested dashboards, complex homepage layout#1238mofojed wants to merge 6 commits intodeephaven:mainfrom
mofojed wants to merge 6 commits intodeephaven:mainfrom
Conversation
- But I can't embed another dashboard within a dashboard ..
- Have a nested dashboard styling, and double nested styling
- Just adjust the header height and font size to be a little smaller at each level...
- Adjust the background behind the header tabs as well to be darker the more nested you go, so you kind of get a sense of the boundary of the dashboard
- Looks okay? I dunno.
- Used the example dashboard from the docs then amalgamated into a double dashboard:
```
from deephaven import ui
double_dash2 = ui.dashboard(
ui.row(
ui.panel(example_dashboard, title="Example Dashboard"),
ui.panel(ui.dashboard(
ui.column(
ui.row(ui.panel(my_table, title="Stocks"), ui.panel(dog_prices, title="Dog Prices")),
ui.panel(line_plot, title="Line plot")
)
), title="My Dash")
)
)
```
- Example of Avi's desired app
|
ui docs preview (Available for 14 days) |
…ted to lm_dragging on lm_root
|
ui docs preview (Available for 14 days) |
dsmmcken
added a commit
to deephaven/web-client-ui
that referenced
this pull request
Oct 31, 2025
…yle default empty dashboard (#2560) For upcoming support of nested ui.dashboards. Gives a visual boundry of the nested layout, showing that children can't be dragged out of the nested layout. Relates to: deephaven/deephaven-plugins#1238
Member
Author
|
Superceded by #1302 |
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.
styles.scssin the deephaven.ui plugin, just did some extra styling for dashboards nested in a dashboardpip instsall --upgrade deephaven-core deephaven-server), then ranpython tools/plugin_builder.py --js --reinstall --server --server-arg --port=10000 --server-arg --jvm-args="-DAuthHandlers=io.deephaven.auth.AnonymousAuthenticationHandler" ui