-
Is there an API to move widgets beyond I currently have this situation: There's an application-wide log that I want to display using I tried having it as a global and yielding it from multiple places, but that breaks layout and styling. If I instead remove it from it's old place in I'm probably overlooking some ergonomic way to solve this instead of moving widgets in the DOM, do you have any suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No, as you've found, the only method for moving a widget is changing its position amongst its siblings. If you're wanting to keep a single log while having other parts of the display change, I'd probably approach it one of a couple of days:
|
Beta Was this translation helpful? Give feedback.
No, as you've found, the only method for moving a widget is changing its position amongst its siblings.
If you're wanting to keep a single log while having other parts of the display change, I'd probably approach it one of a couple of days:
remove
andmount
that as required (a variation on this would be to useContentSwitcher
to manage the other widgets).