golden-layout

GoldenLayout, how to hide/show component?

此生再无相见时 提交于 2020-06-16 17:36:04
问题 I have an application based on GoldenLayout (1.5.9). The layout is a Row containing two Columns. See below the configuration of the column I'm interested in. let config = { content: [ { type: "row", content: [ { type: "column", width: 31, content: [ { type: "stack", isClosable: false, content: [...] }, { type: "component", height: 30, title: "Filters", componentName: "templateComponent" } ] }, ... ] } ] } Now I want to be able to close or hide the Component and made it reappears pushing a

GoldenLayout, how to hide/show component?

╄→гoц情女王★ 提交于 2020-06-16 17:35:01
问题 I have an application based on GoldenLayout (1.5.9). The layout is a Row containing two Columns. See below the configuration of the column I'm interested in. let config = { content: [ { type: "row", content: [ { type: "column", width: 31, content: [ { type: "stack", isClosable: false, content: [...] }, { type: "component", height: 30, title: "Filters", componentName: "templateComponent" } ] }, ... ] } ] } Now I want to be able to close or hide the Component and made it reappears pushing a

Golden Layout with Angular 6 using typescript?

拈花ヽ惹草 提交于 2019-12-06 05:23:34
问题 I am using golden layout with Angular 6, following this tutorial. I'm getting an error on GoldenLayoutModule.forRoot(config) config not assignable to parameter of type GoldenLayoutConfiguration . import { AppComponent } from './app.component'; import { GoldenLayoutModule, GoldenLayoutConfiguration } from '@embedded-enterprises/ng6-golden-layout'; import * as $ from 'jquery'; // It is required to have JQuery as global in the window object. window['$'] = $; // const config:

Golden Layout with Angular 6 using typescript?

六月ゝ 毕业季﹏ 提交于 2019-12-04 10:01:00
I am using golden layout with Angular 6, following this tutorial . I'm getting an error on GoldenLayoutModule.forRoot(config) config not assignable to parameter of type GoldenLayoutConfiguration . import { AppComponent } from './app.component'; import { GoldenLayoutModule, GoldenLayoutConfiguration } from '@embedded-enterprises/ng6-golden-layout'; import * as $ from 'jquery'; // It is required to have JQuery as global in the window object. window['$'] = $; // const config: GoldenLayoutConfiguration { /* TODO */ }; let config = { content: [{ type: 'row', content:[{ type: 'component',

Golden Layout Anulgar 2+ / ng-golden-layout

大憨熊 提交于 2019-12-01 00:03:44
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 goal is to reproduce the drag functionality from this module, as represented here: http://golden-layout.com/examples/#d508753b29c3001c24218bf3a6b25141 Since there's no official support for Angular 2 so far, I've been looking for a way to implement that and I came across the module @goldsam/ng-golden-layout It's an unoficial release of golden layout for angular 2, and I've been trying to create a demo

Golden Layout Anulgar 2+ / ng-golden-layout

痞子三分冷 提交于 2019-11-30 18:20:54
问题 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 goal is to reproduce the drag functionality from this module, as represented here: http://golden-layout.com/examples/#d508753b29c3001c24218bf3a6b25141 Since there's no official support for Angular 2 so far, I've been looking for a way to implement that and I came across the module @goldsam/ng-golden