55 questions
1
vote
0
answers
31
views
How to enable tab switch in Golden Layout
Im using golden layout with some containers in it, in my app there is an edit mode that permise the user to edit and resize the containers, when the user finish to modify he click "end edit" ...
1
vote
0
answers
111
views
Trouble to save state in golden layout in lastest version (2.6)
according to golden layout documentation for saving and load state is something like that:
myLayout.on( 'stateChanged', function(){
var state = JSON.stringify( myLayout.toConfig() );
...
3
votes
1
answer
305
views
newDragSource() does not work in golden-layout 2.6.0
We are (slowly and incredibly painfully) migrating from golden-layout 1.5.9 to golden-layout 2.6.0 in a huge Angular 16 production app.
Within our app, we have a dropdown menu containing the names of ...
1
vote
0
answers
457
views
JavaScript IntersectionObserver Incorrect Behaviour with DOM Layout changes
Expected Behaviour: IntersectionObserver must correctly report the observed component's visibility in the viewport.
Current Behaviour: IntersectionObserver incorrectly reports component as invisible ...
0
votes
1
answer
686
views
[Quasar v2][vuejs3] use other component in the golden layout
I am currently using quasar v2(vuejs3) and the gold-layout 2.5.0 version.
(I also tried vue-golden-layout, but I gave up because it was difficult to use in quasar v2)
project structure
components
- ...
0
votes
0
answers
475
views
Getting error when importing Golden-Layout library to angular
I am using golden layout with Angular 9,
however I am getting this error when I import golden layout:
import { GoldenLayout } from 'golden-layout';
ERROR in node_modules/golden-layout/dist/types/index....
0
votes
2
answers
330
views
golden-layout stackCreated not available in Angular
I am building an app in Angular 11. I am unable to bind sackCreated event, please let me know if its deprecated or it has some alternative. Below is my code.
this._goldenLayout.on('stackCreated', (...
0
votes
1
answer
283
views
Contex/popup menu is cut on splitter of golden layout
I would like to show a context menu for the items in a tree view.
The menu should be shown on top of all other element and it should
also cross the borders of a GoldenLayout (http://golden-layout.com/)...
1
vote
1
answer
1k
views
Is there a way to get Golden Layout pop-outs working in conjunction with Electron windows?
I'm working on a JHipster application that I'm trying to get functioning in Electron. I have Golden Layout for window/pane management and cross-pane communication. I am having several problems with ...
0
votes
1
answer
266
views
Get element instance in callback function
I am developing an Angular library, a sort of Angular wrapper for Golden Layout.
I created an interface, called ActionItem, that gives the possibility to add buttons with actions in the component tab:
...
1
vote
0
answers
62
views
How to use glEventHub in angular components
It's possible to use glEventHub in Reactjs to manipulate tabs with regard design changes and other events as well, which I could not achieve in angular.
Reactjs Example:
let config={...}
var ...
3
votes
1
answer
866
views
Golden-layout with responsive content ineer
I'm using Golden-layout in my Angular 7 app to display some components as widgets in widget grid. And all widgets have ability to resize. I need, for example, increse or make smaller font-size while i ...
2
votes
1
answer
457
views
GoldenLayout - How can I gracefully handle an unknown component during init
I am working on a webapp that is served up "modules/widgets" that dynamically register themselves to GoldenLayout. The layout config is persisted and applied on startup to retain the user's window ...
0
votes
0
answers
420
views
How to apply CRUD golden-layout with redux and reactjs?
I have built a golden layout wrapper using golden-layout-react-redux, and I'm creating new layouts and connecting them to the panels reducer so every time I add a new panel it will get built inside ...
1
vote
2
answers
391
views
How to add ReactDom to global namespace in Meteor
How can I add ReactDOM as a globally accessible variable in Meteor? So it can be used by other 3rd party libraries in Meteor?
Background info, Meteor is a web application framework that simplifies ...
0
votes
1
answer
186
views
Reloading data in slickgrid
Using goldenlayout, and I have a slickgrid loaded inside a container (as the tutorial outlined).
I have a timer that goes out and pulls new data.
I would like to know how to update the data in the ...
1
vote
1
answer
214
views
Python web layout library like Golden Layout
Golden Layout seems to be a really interesting JS layout library. For an app currently developed in Flask, is there anything similar in Python that would integrate well with Flask?
1
vote
2
answers
1k
views
How to hide the particular tab header of goldenLayout
myLayout.config.settings.hasHeaders = false;
I am using this one, but this is hiding all tab headers. I need to hide particular tab header only? Please help me.
4
votes
0
answers
3k
views
Multi-window dockable layout manager for Angular2 WebApps
Is there a multi-window layout manager for Angualar 2 based webapps ?
I found examples like this:
http://golden-layout.com/
http://www.dockspawn.com/
http://docker.api.webcabin.org/index.html
But ...
0
votes
1
answer
451
views
Datatables and Golden Layout - .DataTable() not being called on popout
I have a simple DataTable() in a golden layout container:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
<script ...
1
vote
0
answers
135
views
React this.props.children versus createReactClass
I have the following code that works:
let registered = [];
React.Children.forEach(this.props.children, (child) => {
let name = child.type.name;
if (registered.indexOf(name) ...
4
votes
1
answer
2k
views
Golden Layout Anulgar 2+ / ng-golden-layout
I would like to start by saying that I'm a junior Front-End Developer. So, not much experience with Angular.
So I've been trying to get something to work in Angular 2 with golden layout, my final ...
3
votes
0
answers
383
views
Angular 4 and GoldenLayout - change detection doesn't work
I'am using Golden Layout with my app created using Angular 4 (via angular cli). Golden Layout works well. It shows up, and all components are also in place. But since my components are placed in GL, ...
0
votes
1
answer
3k
views
Property 'registerComponent' does not exist on type 'ElementRef'
I was trying to work on golden-layout with angular2. I followed this plunker, but I got following errors:
Property 'registerComponent' does not exist on type 'ElementRef'.
Property 'eventHub' ...
2
votes
1
answer
1k
views
A way to prevent Electron's WebView reload when Webview element is moved in containing DOM
I use GoldenLayout library with Electron's WebView elements. GoldenLayout manipulates the DOM moving WebView elements around, it is effectively cutting them from one place and pasting them in the ...