Paul Klink

Results 128 comments of Paul Klink

Use the `click` and `focusin` events in your content to call `ComponentContainer.focus()` The apitest app demonstrates this. See [text-component.ts](https://github.com/golden-layout/golden-layout/blob/f649e8838e6e347438e690ad8244e388be8b478a/apitest/text-component.ts#L52) for an example.

Agree with all the above. I think the question is what to do about it. As mentioned in #647, the code for this inside Golden Layout is already quite messy....

Hi @ljaniszewski, Getting Golden Layout to work with frameworks such as Vue and Angular is surprisingly difficult. This is because these frameworks wrap HTML elements with their own components. Instead...

[https://codepen.io/pbklink/pen/dyWJNNm](https://codepen.io/pbklink/pen/dyWJNNm)

Including @martin31821 I think the problem is that popouts currently do not work with virtual bindings (registration or embedded). Popouts currently also do not work in the apitest app. Previously...

Did a bit of debugging and found out why popouts do not work with virtual bindings. The [`adjustToWindowMode()`](https://github.com/golden-layout/golden-layout/blob/938bf4c6b586f8431e9a1dccaadfd3fd8dafd959/src/ts/virtual-layout.ts#L183) function needs to be enhanced to support popouts when using virtual bindings....

#713 Needs testing.

#713 was merged as part of #723 Just tested and confirmed that 'Popouts with virtual bindings' work in apitest with latest version of Golden Layout in repository. Should also work...

The problem is that the field `LayoutManager._isInitialised` is not being set to true. This should be done by the function `LayoutManager.init()` which (in this case) should be called by the...