Layouts and Containers"

From Documentation
m (remove empty version history (via JWB))
 
(106 intermediate revisions by 6 users not shown)
Line 5: Line 5:
 
Layouts are components used to partition the display area it owns into several sub-areas for its child components, while containers ''group'' its child components into the display area it owns.
 
Layouts are components used to partition the display area it owns into several sub-areas for its child components, while containers ''group'' its child components into the display area it owns.
  
You could nest one from another to create the UI you want.
+
Users are allowed to nest one from another to create desired UI.
  
 
=Layouts=
 
=Layouts=
Here are a brief introductions. For detailed information and a complete list, please refer to [[ZK Component Reference/Layouts|ZK Component Reference: Layouts]].
+
This section provides brief introductions for some of the layout components in ZK. For detailed information and the complete list of layouts, please refer to [[ZK Component Reference/Layouts|ZK Component Reference: Layouts]].
 
==Hlayout and Vlayout==
 
==Hlayout and Vlayout==
[[ZK Component Reference/Layouts/Hlayout|Hlayout]] and [[ZK Component Reference/Layouts/Vlayout|vlayout]] are a simple and lightweight layout that arranges its children to be displayed horizontally and vertically, respectively.
+
[[ZK Component Reference/Layouts/Hlayout|Hlayout]] and [[ZK Component Reference/Layouts/Vlayout|Vlayout]] are simple and light-weighted layout components that arrange their children to be displayed horizontally and vertically respectively. Also, they are easily customizable as they are made up of HTML DIVs.
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrHlayout.png]]
 
| [[Image:DrHlayout.png]]
Line 29: Line 29:
 
   <div width="100px" height="50px" style="background:blue">1</div>
 
   <div width="100px" height="50px" style="background:blue">1</div>
 
   <div width="80px" height="70px" style="background:yellow">2</div>
 
   <div width="80px" height="70px" style="background:yellow">2</div>
 +
</vlayout>
 +
</source>
 +
|}
 +
=== Scrolling ===
 +
*To make Hlayout and Vlayout scrollable, specify "overflow:auto;" to "style" .
 +
*The height of Hlayout and Vlayout depends on the size of their children, therefore, in order to keep the height of Hlayout and Vlayout constant for the scroll bar to appear, specify a fixed height to Hlayout and Vlayout or place them into a fixed height container, EX: "<window height="100px"...".
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrHlayout_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="1">
 +
<hlayout width="100px" height="100px" style="border:1px solid black;overflow:auto;">
 +
<div width="40px" height="150px" style="background:blue;color:white;">1</div>
 +
<div width="40px" height="150px" style="background:yellow;">2</div>
 +
</hlayout>
 +
</source>
 +
|-
 +
| [[Image:DrVlayout_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="1">
 +
<vlayout width="100px" height="100px" style="border:1px solid black;overflow:auto;">
 +
<div width="80px" height="80px" style="background:blue;color:white;">1</div>
 +
<div width="80px" height="80px" style="background:yellow;">2</div>
 
</vlayout>
 
</vlayout>
 +
</source>
 +
|}
 +
 +
===Alignment===
 +
Users are allowed to change sclass to control alignment.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrHlayout_alignment.png]]
 +
|
 +
<source lang="xml" highlight="2,14">
 +
<zk>
 +
<hlayout sclass="z-valign-top">
 +
<label value="Text:"/>
 +
<textbox/>
 +
<window width="50px" height="50px" title="win" border="normal"/>
 +
</hlayout>
 +
<separator/>
 +
<hlayout>
 +
<label value="Text:"/>
 +
<textbox/>
 +
<window width="50px" height="50px" title="win" border="normal"/>
 +
</hlayout>
 +
<separator/>
 +
<hlayout sclass="z-valign-bottom">
 +
<label value="Text:"/>
 +
<textbox/>
 +
<window width="50px" height="50px" title="win" border="normal"/>
 +
</hlayout>
 +
</zk>
 
</source>
 
</source>
 
|}
 
|}
  
 
==Hbox and Vbox ==
 
==Hbox and Vbox ==
Similar to [[ZK Component Reference/Layouts/Hlayout|Hlayout]] and [[ZK Component Reference/Layouts/Vlayout|vlayout]], [[ZK Component Reference/Layouts/Hbox|hbox]] and [[ZK Component Reference/Layouts/Vbox|vbox]] arrange its children to be displayed horizontally and vertically. However, they provide more functionality, such as splitter, align and pack, but the performance is slower.
+
Similar to [[ZK Component Reference/Layouts/Hlayout|Hlayout]] and [[ZK Component Reference/Layouts/Vlayout|Vlayout]], [[ZK Component Reference/Layouts/Hbox|Hbox]] and [[ZK Component Reference/Layouts/Vbox|Vbox]] arrange their children to be displayed horizontally and vertically respectively. [[ZK Component Reference/Layouts/Hbox|Hbox]] and [[ZK Component Reference/Layouts/Vbox|Vbox]] provide more functionalities such as splitter, align and pack. However, their '''performance is slower''', so it is suggested to use [[ZK Component Reference/Layouts/Hlayout|Hlayout]] and [[ZK Component Reference/Layouts/Vlayout|Vlayout]] if you'd like to use them a lot in a UI, unless you need the features that only [[ZK Component Reference/Layouts/Hbox|Hbox]] and [[ZK Component Reference/Layouts/Vbox|Vbox]] support.
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrHbox.png]]
 
| [[Image:DrHbox.png]]
Line 55: Line 107:
 
   <splitter collapse="after"/>
 
   <splitter collapse="after"/>
 
   <div width="80px" height="70px" style="background:yellow">2</div>
 
   <div width="80px" height="70px" style="background:yellow">2</div>
 +
</vbox>
 +
</source>
 +
|}
 +
=== Scrolling ===
 +
*Hbox and Vbox are created by a table, however, HTML tables are not able to show scroll bars. Hence, to achieve this, users will need to place them in a scrolling container.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrHlayout_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="1">
 +
<div width="100px" height="100px" style="border:1px solid black;overflow:auto;">
 +
<hbox>
 +
<div width="40px" height="150px" style="background:blue;color:white;">1</div>
 +
<div width="40px" height="150px" style="background:yellow;">2</div>
 +
</hbox>
 +
</div>
 +
</source>
 +
|-
 +
| [[Image:DrVlayout_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="1">
 +
<div width="100px" height="100px" style="border:1px solid black;overflow:auto;">
 +
<vbox>
 +
<div width="80px" height="80px" style="background:blue;color:white;">1</div>
 +
<div width="80px" height="80px" style="background:yellow;">2</div>
 +
</vbox>
 +
</div>
 +
</source>
 +
|}
 +
 +
===Alignment===
 +
*Users are also allowed to specify align and pack to control alignment.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrHbox_align.png]]
 +
|
 +
<source lang="xml" highlight="4">
 +
<window title="Hbox" border="normal" width="150px" height="100px">
 +
<caption label="align: center" />
 +
<hbox width="100%" height="100%" style="border:1px solid black;"
 +
align="center">
 +
<button label="1" />
 +
<button label="2" />
 +
</hbox>
 +
</window>
 +
</source>
 +
|-
 +
| [[Image:DrHbox_pack.png]]
 +
|
 +
<source lang="xml" highlight="4">
 +
<window title="Hbox" border="normal" width="150px" height="100px">
 +
<caption label="pack: center" />
 +
<hbox width="100%" height="100%" style="border:1px solid black;"
 +
pack="center">
 +
<button label="1" />
 +
<button label="2" />
 +
</hbox>
 +
</window>
 +
</source>
 +
|-
 +
| [[Image:DrVbox_align.png]]
 +
|
 +
<source lang="xml" highlight="4">
 +
<window title="Vbox" border="normal" width="150px" height="150px">
 +
<caption label="align: center" />
 +
<vbox width="100%" height="100%" style="border:1px solid black;"
 +
align="center">
 +
<button label="1" />
 +
<button label="2" />
 +
</vbox>
 +
</window>
 +
</source>
 +
|-
 +
| [[Image:DrVbox_pack.png]]
 +
|
 +
<source lang="xml" highlight="4">
 +
<window title="Vbox" border="normal" width="150px" height="150px">
 +
<caption label="pack: center" />
 +
<vbox width="100%" height="100%" style="border:1px solid black;"
 +
pack="center">
 +
<button label="1" />
 +
<button label="2" />
 +
</vbox>
 +
</window>
 +
</source>
 +
|}
 +
For more detailed information, please refer to [[ZK Component Reference/Layouts/Hbox|Hbox]] and [[ZK Component Reference/Layouts/Vbox|Vbox]].
 +
*Users are also allowed to use "cell" to control each cell's alignment.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrHbox_Cell.png]]
 +
|
 +
<source lang="xml" highlight="6,12">
 +
<hbox width="500px">
 +
<cell style="border:1px solid black;">
 +
<button label="Help"/>
 +
</cell>
 +
<cell style="border:1px solid black;"
 +
hflex="6" align="center">
 +
<button label="Add"/>
 +
<button label="Reomve"/>
 +
<button label="Update"/>
 +
</cell>
 +
<cell style="border:1px solid black;"
 +
hflex="4" align="right">
 +
<button label="OK"/>
 +
<button label="Cancel"/>
 +
</cell>
 +
</hbox>
 +
</source>
 +
|-
 +
| [[Image:DrVbox_Cell.png]]
 +
|
 +
<source lang="xml" highlight="6,12">
 +
<vbox width="300px" align="stretch">
 +
<cell style="border:1px solid black;">
 +
<button label="Help"/>
 +
</cell>
 +
<cell style="border:1px solid black;"
 +
align="center">
 +
<button label="Add"/>
 +
<button label="Reomve"/>
 +
<button label="Update"/>
 +
</cell>
 +
<cell style="border:1px solid black;"
 +
align="right">
 +
<button label="OK"/>
 +
<button label="Cancel"/>
 +
</cell>
 
</vbox>
 
</vbox>
 
</source>
 
</source>
Line 60: Line 241:
  
 
==Borderlayout==
 
==Borderlayout==
[[ZK Component Reference/Layouts/Borderlayout|borderlayout]] places its child components in up to five areas: north, east, south, west and center. All extra space is placed in the center area.
+
[[ZK Component Reference/Layouts/Borderlayout|Borderlayout]] divides its child components into to five areas: North, South, East, West and Center. The heights of North and South are first decided, the remaining space is then given to Center as its height. Note that East and West also take on the height of Center.  
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrBorderlayout.png]]
 
| [[Image:DrBorderlayout.png]]
 
|
 
|
 
<source lang="xml">
 
<source lang="xml">
<borderlayout>
+
<borderlayout width="100px" height="100px">
  <north>
+
<north>
    <div height="30px" hflex="1" style="background:blue">N</div>
+
<div style="background:#008db7;color:white;">N</div>
  </north>
+
</north>
  <south>
+
<south>
    <div height="20px" hflex="1" style="background:blue">S</div>
+
<div style="background:#112f37;color:white;">S</div>
  </south>
+
</south>
  <center>
+
<center>
    <div hflex="1" vflex="1">C</div>
+
<div>C</div>
  </center>
+
</center>
  <east>
+
<east>
    <div width="30px" vflex="1" style="background:yellow">E</div>
+
<div style="background:#f2f2f2;">E</div>
  </east>
+
</east>
  <west>
+
<west>
    <div width="20px" vflex="1" style="background:yellow">W</div>
+
<div style="background:#f2f2f2;">W</div>
  </west>
+
</west>
 +
</borderlayout>
 +
</source>
 +
|}
 +
=== flex ===
 +
Layout region shares the height of Borderlayout with a distributing sequence of: North, South and Center while the heights of East and West take on the height of Center. In the previous sample, the div in the layout region does not take up all of layout region's space. In order for the child to occupy the whole area, please set vflex="1" to the child component.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrBorderlayout_flex.png]]
 +
|
 +
<source lang="xml" highlight="12,15">
 +
<borderlayout width="100px" height="100px">
 +
<north>
 +
<div style="background:#008db7;color:white;">N</div>
 +
</north>
 +
<south>
 +
<div style="background:#112f37;color:white;">S</div>
 +
</south>
 +
<center>
 +
<div>C</div>
 +
</center>
 +
<east>
 +
<div vflex="1" style="background:#f2f2f2;">E</div>
 +
</east>
 +
<west>
 +
<div vflex="1" style="background:#f2f2f2;">W</div>
 +
</west>
 
</borderlayout>
 
</borderlayout>
 
</source>
 
</source>
 
|}
 
|}
 +
 +
=== Scrolling ===
 +
*The height of Center depends on Borderlayout but not on its child, therefore, the height of Center will not be expanded by the growing size of its child components. If Center's height is too short for its child, Center will cut out the contents of its child, hence, to avoid this, specify autoscroll="true" to Center in order to assign Center to handle the scrolling.
 +
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrBorderlayout_Center_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="8">
 +
<borderlayout width="300px" height="300px">
 +
<north>
 +
<div height="100px"  style="background:#008db7;color:white;">N</div>
 +
</north>
 +
<south>
 +
<div height="100px"  style="background:#112f37;color:white;">S</div>
 +
</south>
 +
<center autoscroll="true">
 +
<div height="200px">C</div>
 +
</center>
 +
<east flex="true">
 +
<div width="30px" style="background:#f2f2f2;">E</div>
 +
</east>
 +
<west flex="true">
 +
<div width="20px" style="background:#f2f2f2;">W</div>
 +
</west>
 +
</borderlayout>
 +
</source>
 +
|}
 +
 +
===Grown by children ===
 +
*To make Borderlayout dependent on the size of its child components, [[ZK_Developer's_Reference/UI_Patterns/Hflex_and_Vflex#Minimum_Flexibility|vflex feature]] is applied. Specify vflex="min" to each layout region and Borderlayout.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrBorderlayout_grow.png]]
 +
|
 +
<source lang="xml" highlight="1,2,5,8">
 +
<borderlayout width="300px" vflex="min">
 +
<north vflex="min">
 +
<div height="100px"  style="background:#008db7;color:white;">N</div>
 +
</north>
 +
<south vflex="min">
 +
<div height="100px"  style="background:#112f37;color:white;">S</div>
 +
</south>
 +
<center vflex="min">
 +
<div height="200px">C</div>
 +
</center>
 +
<east flex="true">
 +
<div width="30px" style="background:#f2f2f2;">E</div>
 +
</east>
 +
<west flex="true">
 +
<div width="20px" style="background:#f2f2f2;">W</div>
 +
</west>
 +
</borderlayout>
 +
</source>
 +
|}
 +
 +
===  Borderlayout in a container===
 +
*Almost all containers' heights depend on their child components, however, the height of Borderlayout does not expand according to the sizes of its child components, therefore, when placing Borderlayout in a container, users have to specify a fixed height in order for Borderlayout to be visible.
 +
<source lang="xml" highlight="3">
 +
<zk>
 +
<window title="win" border="normal">
 +
<borderlayout height="200px">
 +
<north>
 +
<div style="background:blue">N</div>
 +
</north>
 +
<south>
 +
<div style="background:blue">S</div>
 +
</south>
 +
<center>
 +
<div>C</div>
 +
</center>
 +
<east>
 +
<div style="background:yellow">E</div>
 +
</east>
 +
<west>
 +
<div style="background:yellow">W</div>
 +
</west>
 +
</borderlayout>
 +
</window>
 +
</zk>
 +
</source>
 +
*The default height of Borderlayout is dependent on its parent component, therefore, users can also put Borderlayout in a container with a fixed height.
 +
<source lang="xml" highlight="2">
 +
<zk>
 +
<window title="win" border="normal" height="200px">
 +
<borderlayout>
 +
<north>
 +
<div style="background:blue">N</div>
 +
</north>
 +
<south>
 +
<div style="background:blue">S</div>
 +
</south>
 +
<center>
 +
<div>C</div>
 +
</center>
 +
<east>
 +
<div style="background:yellow">E</div>
 +
</east>
 +
<west>
 +
<div style="background:yellow">W</div>
 +
</west>
 +
</borderlayout>
 +
</window>
 +
</zk>
 +
</source>
  
 
==Columnlayout==
 
==Columnlayout==
[[ZK Component Reference/Layouts/Columnlayout|Columnlayout]] places its child components into multiple columns, and each column could have any number of child components placed vertically with different height (but the same width). Unlike [[ZK Component Reference/Layouts/Portallayout|portallayout]], the user ''cannot'' move the child components to different locations (of course, the application can re-arrange the order anytime it likes).
+
[[ZK Component Reference/Layouts/Columnlayout|Columnlayout]] places its child components into multiple columns while each column allows any number of child components placed vertically with different heights (but with the same widths). Unlike [[ZK Component Reference/Layouts/Portallayout|portallayout]], [[ZK Component Reference/Layouts/Columnlayout|Columnlayout]] does ''not allow'' end users the ability to move child components to different locations at will (although of course, developers are allowed to use the ZK application to re-arrange the order of children components).
  
 
{{ZK PE and EE}}
 
{{ZK PE and EE}}
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrColumnlayout.png]]
 
| [[Image:DrColumnlayout.png]]
Line 116: Line 428:
  
 
==Portallayout==
 
==Portallayout==
[[ZK Component Reference/Layouts/Portallayout|Portallayout]] places its child components into multiple columns, and each column could have any number of child components placed vertically with different height (but the same width). The user can move any of them to another location he want like a portal.
+
[[ZK Component Reference/Layouts/Portallayout|Portallayout]] places its child components into multiple columns while each column can allow any number of child components to be placed vertically with different heights (but with the same widths). Users are also allowed to move any of them to any area desired like that of a portal.  
  
 
{{ZK EE}}
 
{{ZK EE}}
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrPortallayout.png]]
 
| [[Image:DrPortallayout.png]]
Line 147: Line 459:
  
 
==Tablelayout==
 
==Tablelayout==
[[ZK Component Reference/Layouts/Tablelayout|Tablelayout]] places its child components in a table. The implementation is based on HTML TABLE tag.
+
[[ZK Component Reference/Layouts/Tablelayout|Tablelayout]] places its child components in a table. Ths implementation is based on an HTML TABLE tag.
  
 
{{ZK EE}}
 
{{ZK EE}}
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrTablelayout.png]]
 
| [[Image:DrTablelayout.png]]
Line 186: Line 498:
  
 
=Containers=
 
=Containers=
Here are a brief introductions. For detailed information and a complete list, please refer to [[ZK Component Reference/Containers|ZK Component Reference: Containers]].
+
This section provides a brief introduction for some of the container components in ZK. For detailed information and a complete list of containers, please refer to [[ZK Component Reference/Containers|ZK Component Reference: Containers]].
  
 
==Div and Span==
 
==Div and Span==
[[ZK Component Reference/Containers/Div|Div]] and [[ZK Component Reference/Containers/Span|span]] are the most lightweight containers to group child components. They are the same as HTML DIV and SPAN tags respectively. Div is displayed as block that the following sibling won't be displayed in the same vertical position; as if there is a line break before and after it. On the other hand, span is displayed ''inline'' with siblings (as if no line break in between).
+
[[ZK Component Reference/Containers/Div|Div]] and [[ZK Component Reference/Containers/Span|span]] are the most light-weighted containers to group child components. They work the same way as HTML DIV and SPAN tags respectively. Div is a block element that would cause line break for the following sibling i.e. the child and its sibling won't be on the same line (horizontal position). On the other hand, span is an ''inline'' element which would place the child component and its siblings on the same line (horizontal position).
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrDivSpan.png]]
 
| [[Image:DrDivSpan.png]]
Line 203: Line 515:
 
<div>div is a block</div>
 
<div>div is a block</div>
 
<datebox/>
 
<datebox/>
 +
</div>
 +
</source>
 +
|}
 +
=== Scrolling ===
 +
Span:
 +
*Span is an inline element that is not scrollable.
 +
Div:
 +
*To make Div scrollable, specify "overflow:auto;" to "style".
 +
*The height of Div depends on the size of its children, therefore, in order to keep the height of Div constant for the scroll bar to appear, specify a fixed height to Div.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrDiv_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="2">
 +
<div height="100px" width="100px"
 +
style="border:1px solid black;overflow:auto;">
 +
<grid>
 +
<rows>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
</rows>
 +
</grid>
 
</div>
 
</div>
 
</source>
 
</source>
Line 208: Line 545:
  
 
==Window==
 
==Window==
[[ZK Component Reference/Containers/Window|Window]] is a container providing caption, border, overlapped, draggable, closable, sizable, and many other features. Window is also a owner of [[ZK Developer's Reference/UI Composing/ID Space|a ID space]], such that the IDs of its child components won't be conflict with others.
+
[[ZK Component Reference/Containers/Window|Window]] is a container providing captioning, bordering, overlapping, draggable, closable, sizable, and many other features. Window is also the owner of [[ZK Developer's Reference/UI Composing/ID Space|an ID space]], such that each child component and its IDs are in one independent window so as to avoid the IDs of child components conflicting with one another.
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrWindow.png]]
 
| [[Image:DrWindow.png]]
Line 219: Line 556:
 
   <div style="background: yellow">1</div>
 
   <div style="background: yellow">1</div>
 
   <combobox/>
 
   <combobox/>
 +
</window>
 +
</source>
 +
|}
 +
===Scrolling===
 +
*To make Window scrollable, specify "overflow:auto;" from "contentStyle".
 +
*The height of Window is dependent on the size of its children, therefore, in order to keep the height of Window constant for the scroll bar to appear, specify a fixed height to Window.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrWindow_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="3">
 +
<window title="window" border="normal"
 +
height="150px" width="150px"
 +
contentStyle="overflow:auto;">
 +
<grid>
 +
<rows>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
</rows>
 +
</grid>
 
</window>
 
</window>
 
</source>
 
</source>
Line 224: Line 584:
  
 
==Panel==
 
==Panel==
Like [[ZK Component Reference/Containers/Window|Window]], [[ZK Component Reference/Containers/Panel|panel]] is another powerful container, supporting caption, border, overlapped and many other features. However, it does not implement <javadoc type="interface">org.zkoss.zk.ui.IdSpace</javadoc>, so all of its children belongs to the same ID space of its parent.
+
Like [[ZK Component Reference/Containers/Window|Window]], [[ZK Component Reference/Containers/Panel|panel]] is another powerful container supporting captioning, bordering, overlapping and many other features. However, <javadoc type="interface">org.zkoss.zk.ui.IdSpace</javadoc> is not implemented by this component, therefore, all of its children belong to the same ID space of its parent.
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrPanel.png]]
 
| [[Image:DrPanel.png]]
Line 237: Line 597:
 
       <combobox/>
 
       <combobox/>
 
   </panelchildren>
 
   </panelchildren>
 +
</panel>
 +
</source>
 +
|}
 +
===Scrolling===
 +
*To make Panel scrollable, specify "overflow:auto;" to "style" of "panelchildren".
 +
*The height of Panel is dependent on the size of its children, therefore, in order to keep the height of the Panel constant for the scroll bar to appear, specify a fixed height to Panel.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrPanel_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="3">
 +
<panel title="panel" border="normal"
 +
height="150px" width="150px">
 +
<panelchildren style="overflow:auto;">
 +
<grid>
 +
<rows>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
<row>item</row>
 +
</rows>
 +
</grid>
 +
</panelchildren>
 
</panel>
 
</panel>
 
</source>
 
</source>
Line 242: Line 626:
  
 
==Groupbox==
 
==Groupbox==
[[ZK Component Reference/Containers/Groupbox|Groupbox]] is a lightweight way to group child components. It supports the [[ZK Component Reference/Containers/Caption|caption]] and border, but it can not be overlapped or sized. It does not implement <javadoc type="interface">org.zkoss.zk.ui.IdSpace</javadoc> either.
+
[[ZK Component Reference/Containers/Groupbox|Groupbox]] is a light-weighted way to group child components together. It supports [[ZK Component Reference/Containers/Caption|"caption"]] and "border", however, it does not support overlapping or resizing. Like Panel, <javadoc type="interface">org.zkoss.zk.ui.IdSpace</javadoc> is not implemented by this component either.
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrGroupbox3d.png]]
 
| [[Image:DrGroupbox3d.png]]
Line 256: Line 640:
 
     <radio label="Banana"/>
 
     <radio label="Banana"/>
 
   </radiogroup>
 
   </radiogroup>
 +
</groupbox>
 +
</source>
 +
|}
 +
===Scrolling===
 +
<font color="red">3d mold only</font>
 +
*To make Groupbox scrollable, specify "overflow:auto" to "contentStyle".
 +
*The height of the Groupbox depends on the size of its children, therefore, in order to keep the height of the Groupbox constant for the scroll bar to appear, specify a fixed height to Groupbox.
 +
{| class='wikitable' | width="100%"
 +
|-
 +
| [[Image:DrGroupbox3d_scrolling.png]]
 +
|
 +
<source lang="xml" highlight="2">
 +
<groupbox mold="3d" height="150px" width="150px"
 +
contentStyle="overflow:auto;">
 +
<caption label="3d groupbox" />
 +
<grid>
 +
<rows>
 +
<row forEach="1,2,3,4,5,6">item</row>
 +
</rows>
 +
</grid>
 
</groupbox>
 
</groupbox>
 
</source>
 
</source>
Line 261: Line 665:
  
 
==Tabbox==
 
==Tabbox==
[[ZK Component Reference/Containers/Tabbox|Tabbox]] is a container used to display a set of tabbed groups of components. A row of tabs is displayed at the top (or left or other location) of tabbox which may be used to switch between each group.
+
[[ZK Component Reference/Containers/Tabbox|Tabbox]] is a container used to display a set of tabbed groups of components. A row of tabs can be displayed at the top (or left) of the tabbox; users can switch between each tab group by a simple click. <javadoc type="interface">org.zkoss.zk.ui.IdSpace</javadoc> is not implemented by this component either.
It does not implement <javadoc type="interface">org.zkoss.zk.ui.IdSpace</javadoc> either.
 
  
{| border="1px" | width="100%" | cellspacing="0"
+
{| class='wikitable' | width="100%"
 
|-
 
|-
 
| [[Image:DrTabbox.png]]
 
| [[Image:DrTabbox.png]]
Line 281: Line 684:
 
</source>
 
</source>
 
|}
 
|}
 
+
===Scrolling===
= Default size of ZK components =
+
* To make Tabpanel scrollable, specify "overflow:auto;" to "style".
 
+
*The height of Tabpanel is dependent on the size of its children, therefore, in order to keep the height of the Tabpanel constant for the scroll bar to appear, specify a fixed height to Tabbox.
{| border="1px" | width="100%" | cellspacing="0" | style="text-align: center;"
+
{| class='wikitable' | width="100%"
|- style="background: #B8CCE4;"
 
! scope="col" | Component
 
! scope="col" | Default Width
 
! scope="col" | Default Height
 
 
|-
 
|-
! scope="row" | Div
+
| [[Image:DrTabbox_scrolling.png]]
| count on parent
+
|
| count on children
+
<source lang="xml" highlight="6">
 +
<tabbox height="100px" width="150px">
 +
<tabs>
 +
<tab label="tab" />
 +
</tabs>
 +
<tabpanels>
 +
<tabpanel style="overflow:auto;">
 +
<grid>
 +
<rows>
 +
<row forEach="1,2,3,4,5,6">item</row>
 +
</rows>
 +
</grid>
 +
</tabpanel>
 +
</tabpanels>
 +
</tabbox>
 +
</source>
 
|}
 
|}
  
=Version History=
+
 
{{LastUpdated}}
 
{| border='1px' | width="100%"
 
! Version !! Date !! Content
 
|-
 
| &nbsp;
 
| &nbsp;
 
| &nbsp;
 
|}
 
  
 
{{ZKDevelopersReferencePageFooter}}
 
{{ZKDevelopersReferencePageFooter}}

Latest revision as of 05:54, 6 February 2024


Layouts and Containers


Layouts are components used to partition the display area it owns into several sub-areas for its child components, while containers group its child components into the display area it owns.

Users are allowed to nest one from another to create desired UI.

Layouts

This section provides brief introductions for some of the layout components in ZK. For detailed information and the complete list of layouts, please refer to ZK Component Reference: Layouts.

Hlayout and Vlayout

Hlayout and Vlayout are simple and light-weighted layout components that arrange their children to be displayed horizontally and vertically respectively. Also, they are easily customizable as they are made up of HTML DIVs.

DrHlayout.png
<hlayout>
  <div width="100px" height="50px" style="background:blue">1</div>
  <div width="80px" height="70px" style="background:yellow">2</div>
</hlayout>
DrVlayout.png
<vlayout>
  <div width="100px" height="50px" style="background:blue">1</div>
  <div width="80px" height="70px" style="background:yellow">2</div>
</vlayout>

Scrolling

  • To make Hlayout and Vlayout scrollable, specify "overflow:auto;" to "style" .
  • The height of Hlayout and Vlayout depends on the size of their children, therefore, in order to keep the height of Hlayout and Vlayout constant for the scroll bar to appear, specify a fixed height to Hlayout and Vlayout or place them into a fixed height container, EX: "<window height="100px"...".
DrHlayout scrolling.png
<hlayout width="100px" height="100px" style="border:1px solid black;overflow:auto;">
	<div width="40px" height="150px" style="background:blue;color:white;">1</div>
	<div width="40px" height="150px" style="background:yellow;">2</div>
</hlayout>
DrVlayout scrolling.png
<vlayout width="100px" height="100px" style="border:1px solid black;overflow:auto;">
	<div width="80px" height="80px" style="background:blue;color:white;">1</div>
	<div width="80px" height="80px" style="background:yellow;">2</div>
</vlayout>

Alignment

Users are allowed to change sclass to control alignment.

DrHlayout alignment.png
<zk>
	<hlayout sclass="z-valign-top">
		<label value="Text:"/>
		<textbox/>
		<window width="50px" height="50px" title="win" border="normal"/>
	</hlayout>
	<separator/>
	<hlayout>
		<label value="Text:"/>
		<textbox/>
		<window width="50px" height="50px" title="win" border="normal"/>
	</hlayout>
	<separator/>
	<hlayout sclass="z-valign-bottom">
		<label value="Text:"/>
		<textbox/>
		<window width="50px" height="50px" title="win" border="normal"/>
	</hlayout>
</zk>

Hbox and Vbox

Similar to Hlayout and Vlayout, Hbox and Vbox arrange their children to be displayed horizontally and vertically respectively. Hbox and Vbox provide more functionalities such as splitter, align and pack. However, their performance is slower, so it is suggested to use Hlayout and Vlayout if you'd like to use them a lot in a UI, unless you need the features that only Hbox and Vbox support.

DrHbox.png
<hbox>
  <div width="100px" height="50px" style="background:blue">1</div>
  <splitter collapse="before"/>
  <div width="80px" height="70px" style="background:yellow">2</div>
</hbox>
DrVbox.png
<vbox>
  <div width="100px" height="50px" style="background:blue">1</div>
  <splitter collapse="after"/>
  <div width="80px" height="70px" style="background:yellow">2</div>
</vbox>

Scrolling

  • Hbox and Vbox are created by a table, however, HTML tables are not able to show scroll bars. Hence, to achieve this, users will need to place them in a scrolling container.
DrHlayout scrolling.png
<div width="100px" height="100px" style="border:1px solid black;overflow:auto;">
	<hbox>
		<div width="40px" height="150px" style="background:blue;color:white;">1</div>
		<div width="40px" height="150px" style="background:yellow;">2</div>
	</hbox>
</div>
DrVlayout scrolling.png
<div width="100px" height="100px" style="border:1px solid black;overflow:auto;">
	<vbox>
		<div width="80px" height="80px" style="background:blue;color:white;">1</div>
		<div width="80px" height="80px" style="background:yellow;">2</div>
	</vbox>
</div>

Alignment

  • Users are also allowed to specify align and pack to control alignment.
DrHbox align.png
<window title="Hbox" border="normal" width="150px" height="100px">
	<caption label="align: center" />
	<hbox width="100%" height="100%" style="border:1px solid black;"
		align="center">
		<button label="1" />
		<button label="2" />
	</hbox>
</window>
DrHbox pack.png
<window title="Hbox" border="normal" width="150px" height="100px">
	<caption label="pack: center" />
	<hbox width="100%" height="100%" style="border:1px solid black;" 
		pack="center">
		<button label="1" />
		<button label="2" />
	</hbox>
</window>
DrVbox align.png
<window title="Vbox" border="normal" width="150px" height="150px">
	<caption label="align: center" />
	<vbox width="100%" height="100%" style="border:1px solid black;" 
		align="center">
		<button label="1" />
		<button label="2" />
	</vbox>
</window>
DrVbox pack.png
<window title="Vbox" border="normal" width="150px" height="150px">
	<caption label="pack: center" />
	<vbox width="100%" height="100%" style="border:1px solid black;" 
		pack="center">
		<button label="1" />
		<button label="2" />
	</vbox>
</window>

For more detailed information, please refer to Hbox and Vbox.

  • Users are also allowed to use "cell" to control each cell's alignment.
DrHbox Cell.png
<hbox width="500px">
	<cell style="border:1px solid black;">
		<button label="Help"/>
	</cell>
	<cell style="border:1px solid black;"
		hflex="6" align="center">
		<button label="Add"/>
		<button label="Reomve"/>
		<button label="Update"/>
	</cell>
	<cell style="border:1px solid black;"
		hflex="4" align="right">
		<button label="OK"/>
		<button label="Cancel"/>
	</cell>
</hbox>
DrVbox Cell.png
<vbox width="300px" align="stretch">
	<cell style="border:1px solid black;">
		<button label="Help"/>
	</cell>
	<cell style="border:1px solid black;"
		align="center">
		<button label="Add"/>
		<button label="Reomve"/>
		<button label="Update"/>
	</cell>
	<cell style="border:1px solid black;"
		align="right">
		<button label="OK"/>
		<button label="Cancel"/>
	</cell>
</vbox>

Borderlayout

Borderlayout divides its child components into to five areas: North, South, East, West and Center. The heights of North and South are first decided, the remaining space is then given to Center as its height. Note that East and West also take on the height of Center.

DrBorderlayout.png
<borderlayout width="100px" height="100px">
	<north>
		<div style="background:#008db7;color:white;">N</div>
	</north>
	<south>
		<div style="background:#112f37;color:white;">S</div>
	</south>
	<center>
		<div>C</div>
	</center>
	<east>
		<div style="background:#f2f2f2;">E</div>
	</east>
	<west>
		<div style="background:#f2f2f2;">W</div>
	</west>
</borderlayout>

flex

Layout region shares the height of Borderlayout with a distributing sequence of: North, South and Center while the heights of East and West take on the height of Center. In the previous sample, the div in the layout region does not take up all of layout region's space. In order for the child to occupy the whole area, please set vflex="1" to the child component.

DrBorderlayout flex.png
<borderlayout width="100px" height="100px">
	<north>
		<div style="background:#008db7;color:white;">N</div>
	</north>
	<south>
		<div style="background:#112f37;color:white;">S</div>
	</south>
	<center>
		<div>C</div>
	</center>
	<east>
		<div vflex="1" style="background:#f2f2f2;">E</div>
	</east>
	<west>
		<div vflex="1" style="background:#f2f2f2;">W</div>
	</west>
</borderlayout>

Scrolling

  • The height of Center depends on Borderlayout but not on its child, therefore, the height of Center will not be expanded by the growing size of its child components. If Center's height is too short for its child, Center will cut out the contents of its child, hence, to avoid this, specify autoscroll="true" to Center in order to assign Center to handle the scrolling.
DrBorderlayout Center scrolling.png
<borderlayout width="300px" height="300px">
	<north>
		<div height="100px"  style="background:#008db7;color:white;">N</div>
	</north>
	<south>
		<div height="100px"  style="background:#112f37;color:white;">S</div>
	</south>
	<center autoscroll="true">
		<div height="200px">C</div>
	</center>
	<east flex="true">
		<div width="30px" style="background:#f2f2f2;">E</div>
	</east>
	<west flex="true">
		<div width="20px" style="background:#f2f2f2;">W</div>
	</west>
</borderlayout>

Grown by children

  • To make Borderlayout dependent on the size of its child components, vflex feature is applied. Specify vflex="min" to each layout region and Borderlayout.
DrBorderlayout grow.png
<borderlayout width="300px" vflex="min">
	<north vflex="min">
		<div height="100px"  style="background:#008db7;color:white;">N</div>
	</north>
	<south vflex="min">
		<div height="100px"  style="background:#112f37;color:white;">S</div>
	</south>
	<center vflex="min">
		<div height="200px">C</div>
	</center>
	<east flex="true">
		<div width="30px" style="background:#f2f2f2;">E</div>
	</east>
	<west flex="true">
		<div width="20px" style="background:#f2f2f2;">W</div>
	</west>
</borderlayout>

Borderlayout in a container

  • Almost all containers' heights depend on their child components, however, the height of Borderlayout does not expand according to the sizes of its child components, therefore, when placing Borderlayout in a container, users have to specify a fixed height in order for Borderlayout to be visible.
<zk>
	<window title="win" border="normal">
		<borderlayout height="200px">
			<north>
				<div style="background:blue">N</div>
			</north>
			<south>
				<div style="background:blue">S</div>
			</south>
			<center>
				<div>C</div>
			</center>
			<east>
				<div style="background:yellow">E</div>
			</east>
			<west>
				<div style="background:yellow">W</div>
			</west>
		</borderlayout>
	</window>
</zk>
  • The default height of Borderlayout is dependent on its parent component, therefore, users can also put Borderlayout in a container with a fixed height.
<zk>
	<window title="win" border="normal" height="200px">
		<borderlayout>
			<north>
				<div style="background:blue">N</div>
			</north>
			<south>
				<div style="background:blue">S</div>
			</south>
			<center>
				<div>C</div>
			</center>
			<east>
				<div style="background:yellow">E</div>
			</east>
			<west>
				<div style="background:yellow">W</div>
			</west>
		</borderlayout>
	</window>
</zk>

Columnlayout

Columnlayout places its child components into multiple columns while each column allows any number of child components placed vertically with different heights (but with the same widths). Unlike portallayout, Columnlayout does not allow end users the ability to move child components to different locations at will (although of course, developers are allowed to use the ZK application to re-arrange the order of children components).

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion pe-ee.png
DrColumnlayout.png
<columnlayout>
  <columnchildren width="30%" style="padding: 5px 1px">
    <panel height="60px" title="1" border="normal" maximizable="true">
      <panelchildren>1</panelchildren>
    </panel>
    <panel height="80px" title="2" border="normal" closable="true">
      <panelchildren>2</panelchildren>
    </panel>
  </columnchildren>
  <columnchildren width="70%" style="padding: 5px 1px">
    <panel height="100px" title="3" border="normal" collapsible="true">
      <panelchildren>3</panelchildren>
    </panel>
  </columnchildren>
</columnlayout>

Portallayout

Portallayout places its child components into multiple columns while each column can allow any number of child components to be placed vertically with different heights (but with the same widths). Users are also allowed to move any of them to any area desired like that of a portal.

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png
DrPortallayout.png
<portallayout>
  <portalchildren width="40%" style="padding: 5px 1px">
    <panel height="60px" title="1" border="normal" maximizable="true">
      <panelchildren>1</panelchildren>
    </panel>
    <panel height="90px" title="2" border="normal" closable="true">
      <panelchildren>2</panelchildren>
    </panel>
  </portalchildren>
  <portalchildren width="60%" style="padding: 5px 1px">
    <panel height="100px" title="3" border="normal" collapsible="true">
      <panelchildren>3</panelchildren>
    </panel>
    <panel height="55px" title="4" border="normal" closable="true">
      <panelchildren>4</panelchildren>
    </panel>
  </portalchildren>
</portallayout>

Tablelayout

Tablelayout places its child components in a table. Ths implementation is based on an HTML TABLE tag.

  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png
DrTablelayout.png
<tablelayout columns="2">
  <tablechildren>
    <panel title="1" border="normal"
      collapsible="true" width="80px" height="60px">
      <panelchildren>1</panelchildren>
    </panel>
  </tablechildren>
  <tablechildren>
    <panel title="2" border="normal"
      collapsible="true" width="80px" height="60px">
      <panelchildren>2</panelchildren>
    </panel>
  </tablechildren>
  <tablechildren>
    <panel title="3" border="normal"
      collapsible="true" width="80px" height="60px">
      <panelchildren>3</panelchildren>
    </panel>
  </tablechildren>
  <tablechildren>
    <panel title="4" border="normal"
      collapsible="true" width="80px" height="60px">
      <panelchildren>4</panelchildren>
    </panel>
  </tablechildren>
</tablelayout>

Containers

This section provides a brief introduction for some of the container components in ZK. For detailed information and a complete list of containers, please refer to ZK Component Reference: Containers.

Div and Span

Div and span are the most light-weighted containers to group child components. They work the same way as HTML DIV and SPAN tags respectively. Div is a block element that would cause line break for the following sibling i.e. the child and its sibling won't be on the same line (horizontal position). On the other hand, span is an inline element which would place the child component and its siblings on the same line (horizontal position).

DrDivSpan.png
<div style="border: 1px solid blue" width="150px">
  this is
  <span>inlined with <button label="Hi"/></span>
</div>
<div style="border: 1px solid grey">
	<div>div is a block</div>
	<datebox/>
</div>

Scrolling

Span:

  • Span is an inline element that is not scrollable.

Div:

  • To make Div scrollable, specify "overflow:auto;" to "style".
  • The height of Div depends on the size of its children, therefore, in order to keep the height of Div constant for the scroll bar to appear, specify a fixed height to Div.
DrDiv scrolling.png
<div height="100px" width="100px" 
	style="border:1px solid black;overflow:auto;">
	<grid>
		<rows>
			<row>item</row>
			<row>item</row>
			<row>item</row>
			<row>item</row>
			<row>item</row>
		</rows>
	</grid>
</div>

Window

Window is a container providing captioning, bordering, overlapping, draggable, closable, sizable, and many other features. Window is also the owner of an ID space, such that each child component and its IDs are in one independent window so as to avoid the IDs of child components conflicting with one another.

DrWindow.png
<window title="A" closable="true" sizable="true"
 border="normal" mode="overlapped">
   <div style="background: yellow">1</div>
   <combobox/>
</window>

Scrolling

  • To make Window scrollable, specify "overflow:auto;" from "contentStyle".
  • The height of Window is dependent on the size of its children, therefore, in order to keep the height of Window constant for the scroll bar to appear, specify a fixed height to Window.
DrWindow scrolling.png
<window title="window" border="normal" 
	height="150px" width="150px"
	contentStyle="overflow:auto;">
	<grid>
		<rows>
			<row>item</row>
			<row>item</row>
			<row>item</row>
			<row>item</row>
			<row>item</row>
		</rows>
	</grid>
</window>

Panel

Like Window, panel is another powerful container supporting captioning, bordering, overlapping and many other features. However, IdSpace is not implemented by this component, therefore, all of its children belong to the same ID space of its parent.

DrPanel.png
<panel title="A" framable="true" border="normal"
 maximizable="true" collapsible="true">
   <panelchildren>
      <div style="background: yellow">1</div>
      <combobox/>
   </panelchildren>
</panel>

Scrolling

  • To make Panel scrollable, specify "overflow:auto;" to "style" of "panelchildren".
  • The height of Panel is dependent on the size of its children, therefore, in order to keep the height of the Panel constant for the scroll bar to appear, specify a fixed height to Panel.
DrPanel scrolling.png
<panel title="panel" border="normal" 
	height="150px" width="150px">
	<panelchildren style="overflow:auto;">
		<grid>
			<rows>
				<row>item</row>
				<row>item</row>
				<row>item</row>
				<row>item</row>
				<row>item</row>
			</rows>
		</grid>
	</panelchildren>
</panel>

Groupbox

Groupbox is a light-weighted way to group child components together. It supports "caption" and "border", however, it does not support overlapping or resizing. Like Panel, IdSpace is not implemented by this component either.

DrGroupbox3d.png
<groupbox mold="3d">
  <caption label="Fruits"/>
  <radiogroup>
    <radio label="Apple"/>
    <radio label="Orange"/>
    <radio label="Banana"/>
  </radiogroup>
</groupbox>

Scrolling

3d mold only
  • To make Groupbox scrollable, specify "overflow:auto" to "contentStyle".
  • The height of the Groupbox depends on the size of its children, therefore, in order to keep the height of the Groupbox constant for the scroll bar to appear, specify a fixed height to Groupbox.
DrGroupbox3d scrolling.png
<groupbox mold="3d" height="150px" width="150px"
	contentStyle="overflow:auto;">
	<caption label="3d groupbox" />
	<grid>
		<rows>
			<row forEach="1,2,3,4,5,6">item</row>
		</rows>
	</grid>
</groupbox>

Tabbox

Tabbox is a container used to display a set of tabbed groups of components. A row of tabs can be displayed at the top (or left) of the tabbox; users can switch between each tab group by a simple click. IdSpace is not implemented by this component either.

DrTabbox.png
<tabbox height="80px">
  <tabs>
    <tab label="Tab 1"/>
    <tab label="Tab 2"/>
  </tabs>
  <tabpanels>
    <tabpanel>This is panel 1</tabpanel>
    <tabpanel>This is panel 2</tabpanel>
  </tabpanels>
</tabbox>

Scrolling

  • To make Tabpanel scrollable, specify "overflow:auto;" to "style".
  • The height of Tabpanel is dependent on the size of its children, therefore, in order to keep the height of the Tabpanel constant for the scroll bar to appear, specify a fixed height to Tabbox.
DrTabbox scrolling.png
<tabbox height="100px" width="150px">
	<tabs>
		<tab label="tab" />
	</tabs>
	<tabpanels>
		<tabpanel style="overflow:auto;">
			<grid>
				<rows>
					<row forEach="1,2,3,4,5,6">item</row>
				</rows>
			</grid>
		</tabpanel>
	</tabpanels>
</tabbox>




Last Update : 2024/02/06

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