GoldenLayout"

From Documentation
m ((via JWB))
 
(7 intermediate revisions by 3 users not shown)
Line 2: Line 2:
  
 
= GoldenLayout =
 
= GoldenLayout =
 
+
{{versionSince | 8.6.0}}
 +
{{ZK EE}}
 
*Java API: <javadoc>org.zkoss.zkmax.zul.GoldenLayout</javadoc>
 
*Java API: <javadoc>org.zkoss.zkmax.zul.GoldenLayout</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.GoldenLayout</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.GoldenLayout</javadoc>
*{{ZK EE}}
+
 
[ since 8.6.0 ]
+
=Browser Support=
 +
* Due to the limitation of the 3rd party library used in this component, GoldenLayout is not supported in mobile devices.
 +
 
  
 
= Employment/Purpose =
 
= Employment/Purpose =
Line 12: Line 15:
  
 
A GoldenLayout could be nested to another GoldenLayout (actually, almost all kinds of components) to form a complicated layout.
 
A GoldenLayout could be nested to another GoldenLayout (actually, almost all kinds of components) to form a complicated layout.
 
Note that, due to the library's restriction, GoldenLayout is not supported in mobile devices.
 
  
 
= Example =
 
= Example =
Line 51: Line 52:
  
 
=Properties and Features=
 
=Properties and Features=
The goldenLayout is layouted as docker type, and is usually construct with a tree structure, which is hard to layout in zul. ZK change the structure for initial rendering to a one layer design. All the GoldenPanels are in one layer inside GoldenLayout, and the panels layout pattern will be specified by the <tt>areas</tt> attribute of GoldenLayout and <tt>area</tt> attribute of GoldenPanel. The order added to the GoldenLayout only represents the stacking order if they are stacked together in the same area.
+
The goldenLayout is layouted as docker type, and is usually construct with a tree structure, which is hard to layout in zul. ZK change the structure for initial rendering to a one layer design. All the GoldenPanels are in one layer inside GoldenLayout, and the panels layout pattern will be specified by the <code>areas</code> attribute of GoldenLayout and <code>area</code> attribute of GoldenPanel. The order added to the GoldenLayout only represents the stacking order if they are stacked together in the same area.
  
 
==Areas==
 
==Areas==
The <tt>areas</tt> attribute is a sugar for initializing the layout.
+
The <code>areas</code> attribute is a sugar for initializing the layout.
 
In the example code above, we have the areas in line 2 specified as
 
In the example code above, we have the areas in line 2 specified as
  
Line 63: Line 64:
 
C C D
 
C C D
  
The GoldenPanels which <tt>area</tt> attribute is specified as A, will be positioned at the A position of the <tt>areas</tt> attribute.
+
The GoldenPanels which <code>area</code> attribute is specified as A, will be positioned at the A position of the <code>areas</code> attribute.
  
  
Note that, A A B will result as <tt>hflex</tt> A is 2 and <tt>hflex</tt> B is 1. Same with vflex. But if <tt>hflex</tt> or <tt>vflex</tt> attribute is specified on the GoldenPanel which area is A, it overrides the flex size calculated by the GoldenLayout's <tt>areas</tt> attribute.
+
Note that, A A B will result as <code>hflex</code> A is 2 and <code>hflex</code> B is 1. Same with vflex. But if <code>hflex</code> or <code>vflex</code> attribute is specified on the GoldenPanel which area is A, it overrides the flex size calculated by the GoldenLayout's <code>areas</code> attribute.
  
  
Line 74: Line 75:
  
 
From the example above, it's possible to divide in two ways.
 
From the example above, it's possible to divide in two ways.
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
! <center>areas</center> !! <center>vertical</center> !! <center>horizontal</center>
 
! <center>areas</center> !! <center>vertical</center> !! <center>horizontal</center>
 
|-
 
|-
Line 84: Line 85:
  
 
==Adding GoldenPanels==
 
==Adding GoldenPanels==
By user's drag drop, the GoldenPanels are usually dropped to a region like <tt>north</tt>, <tt>east</tt>, <tt>south</tt>, <tt>west</tt> and <tt>stack</tt> of a GoldenPanel.
+
By user's drag drop, the GoldenPanels are usually dropped to a region like <code>north</code>, <code>east</code>, <code>south</code>, <code>west</code> and <code>stack</code> of a GoldenPanel.
 
So we provide some GoldenPanel adding APIs to simulate these actions. Please refer to the addPanel APIs like <javadoc method="addPanel(GoldenPanel, GoldenPanel, String)">org.zkoss.zkmax.zul.GoldenLayout</javadoc>  in <javadoc>org.zkoss.zkmax.zul.GoldenLayout</javadoc>.
 
So we provide some GoldenPanel adding APIs to simulate these actions. Please refer to the addPanel APIs like <javadoc method="addPanel(GoldenPanel, GoldenPanel, String)">org.zkoss.zkmax.zul.GoldenLayout</javadoc>  in <javadoc>org.zkoss.zkmax.zul.GoldenLayout</javadoc>.
  
Line 114: Line 115:
 
=Supported Events=
 
=Supported Events=
  
{| border="1" | width="100%"
+
{| class='wikitable' | width="100%"
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 131: Line 132:
 
{{LastUpdated}}
 
{{LastUpdated}}
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 14:08, 12 January 2022

GoldenLayout

Since 8.6.0

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png

Browser Support

  • Due to the limitation of the 3rd party library used in this component, GoldenLayout is not supported in mobile devices.


Employment/Purpose

GoldenLayout is a layout container which layouts panels as docker type and is used to represent GoldenLayout. GoldenLayout is the parent component, and its children component can only be GoldenPanel.

A GoldenLayout could be nested to another GoldenLayout (actually, almost all kinds of components) to form a complicated layout.

Example

ZKCompRef GoldenLayout.png

    <goldenlayout vflex="1" hflex="1">
        <attribute name="areas">
            A A B
            A A B
            C C D
        </attribute>
        <goldenpanel area="A" title="Panel A">
            <window vflex="1" title="Window inside GoldenPanel A" border="normal"/>
        </goldenpanel>
        <goldenpanel area="B" title="Panel B">
            <button label="Button inside GoldenPanel B"/>
        </goldenpanel>
        <goldenpanel area="C" title="Panel C">
            <vlayout>
                SplitLayout inside GoldenPanel C
                <splitlayout hflex="1" height="500px">
                    <tbeditor vflex="1"/>
                    <window border="normal" title="Window" vflex="1"/>
                </splitlayout>
            </vlayout>
        </goldenpanel>
        <goldenpanel area="D" title="Panel D">
            <vlayout>
                Rating inside GoldenPanel D
                <rating max="10" rating="8"/>
            </vlayout>
        </goldenpanel>
    </goldenlayout>

Properties and Features

The goldenLayout is layouted as docker type, and is usually construct with a tree structure, which is hard to layout in zul. ZK change the structure for initial rendering to a one layer design. All the GoldenPanels are in one layer inside GoldenLayout, and the panels layout pattern will be specified by the areas attribute of GoldenLayout and area attribute of GoldenPanel. The order added to the GoldenLayout only represents the stacking order if they are stacked together in the same area.

Areas

The areas attribute is a sugar for initializing the layout. In the example code above, we have the areas in line 2 specified as

A A B

A A B

C C D

The GoldenPanels which area attribute is specified as A, will be positioned at the A position of the areas attribute.


Note that, A A B will result as hflex A is 2 and hflex B is 1. Same with vflex. But if hflex or vflex attribute is specified on the GoldenPanel which area is A, it overrides the flex size calculated by the GoldenLayout's areas attribute.


Orient

The orient indicates the initial splitting orientation if you layout it by the area attribute. Supported value: (default) “vertical” or “horizontal”.

From the example above, it's possible to divide in two ways.

areas
vertical
horizontal
ZKCompRef GoldenLayout areas.png
ZKCompRef GoldenLayout vertical.png
ZKCompRef GoldenLayout horizontal.png


Adding GoldenPanels

By user's drag drop, the GoldenPanels are usually dropped to a region like north, east, south, west and stack of a GoldenPanel. So we provide some GoldenPanel adding APIs to simulate these actions. Please refer to the addPanel APIs like GoldenLayout.addPanel(GoldenPanel, GoldenPanel, String) in GoldenLayout.

north

ZKCompRef GoldenLayout region north.png


east

ZKCompRef GoldenLayout region east.png


south

ZKCompRef GoldenLayout region south.png


west

ZKCompRef GoldenLayout region west.png


stack

ZKCompRef GoldenLayout region stack.png


Supported Events

Name
Event Type
None None

Supported Children

* GoldenPanel


Version History

Last Update : 2022/01/12


Version Date Content
     



Last Update : 2022/01/12

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.