You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example adds a new grid component to the center of the tabset with ID "1" at the first position (0). Use `-1` to add to the end of the tabs.
300
300
301
-
Note: You can retrieve the ID of a node (e.g., the node returned by the `addNode` action) using `node.getId()`. If an ID wasn't assigned when the node was created, one will be generated for you in the form `#<uuid>` (e.g., `#0c459064-8dee-444e-8636-eb9ab910fb27`).
301
+
Note: You can retrieve the ID of a node (e.g., the node returned by the `addTab` action) using `node.getId()`. If an ID wasn't assigned when the node was created, one will be generated for you in the form `#<uuid>` (e.g., `#0c459064-8dee-444e-8636-eb9ab910fb27`).
302
302
303
303
Note: You can intercept actions resulting from GUI changes before they are applied by implementing the `onAction` callback property of the `Layout`.
304
304
@@ -323,7 +323,7 @@ The JSON model is defined as a set of TypeScript interfaces. See the documentati
323
323
324
324
Note: Tabsets are dynamically created as tabs are moved and deleted when their last tab is removed (unless `enableDeleteWhenEmpty` is set to `false`).
@@ -369,7 +369,7 @@ function MyComponent({ node }) {
369
369
370
370
## Popout Windows
371
371
372
-
Tabs can be rendered into external browser windows (useful for multi-monitor setups) by using the `enablePopout`attribute. When enabled, a popout icon appears in the tab header.
372
+
Tabs can be rendered into external browser windows (useful for multi-monitor setups) by using the `enablePopout`and `enablePopoutIcon` attributes. When enabled, a popout icon appears in the tab header.
373
373
374
374
Popout windows require an additional HTML page, `popout.html`, hosted at the same location as the main page (you can copy this from the demo app). The `popout.html` acts as the host for the popped-out tab, and the main page's styles are copied into it at runtime.
0 commit comments