Paul Klink
Paul Klink
1. Looks like this change will allow you to close a tab even if it is not closable. I think the event handler should be added within the `if (this._componentItem.isClosable)...
[Unsupported](https://golden-layout.github.io/golden-layout/version-2/#dropped-features)
Use `ComponentItem.setTitle()` or `ComponentContainer.setTitle()`. Tabs do not have the same lifetimes as components. By using the above, the title is automatically set in a tab whenever it is assigned to...
Hi @mathpaquette ### Caching components I assume what you want is that, when the closed button is clicked, you want to store the component in a cache instead of destroying...
I can expose Stack.header after the current repository release is published to NPM
### Hiding Components I gather what you want to do is hide the components while they are still in place in the layout. Probably not a good idea to change...
Which events do not work?
The dragstop event only gets fired by objects getting dragged: splitter, dragproxy, dragsource. GoldenLayout/LayoutManager does not get dragged so it will not emit this event. Which type of drag are...
\A similar question was asked by @AnIsotropicEntropy (account deleted) who submitted a PR to make this possible. I responded with instructions on how the PR should be formulated to achieve...
`ComponentItem` and `ComponentContainer` have different roles. `ComponentItem` represents a node in the Golden Layout tree. `ComponentContainer` is the API through which an application component accesses GoldenLayout features. They should be...