Rowlayout"

From Documentation
Line 3: Line 3:
 
= Rowlayout =
 
= Rowlayout =
  
*Demonstration: [http://www.zkoss.org/zkdemo/layout/portal_layout Portallayout]
+
*Java API: <javadoc>org.zkoss.zkmax.zul.RowLayout</javadoc>
*Java API: <javadoc>org.zkoss.zkmax.zul.Portallayout</javadoc>
+
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.RowLayout</javadoc>
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.Portallayout</javadoc>
+
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification | RowLayout]]
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Portallayout| Portallayout]]
 
 
*{{ZK EE}}
 
*{{ZK EE}}
  
 
= Employment/Purpose =
 
= Employment/Purpose =
A <tt>portallayout</tt> lays out a container which can have multiple columns, and each column might have any number panels placed vertically with different heights. <tt>Portallayout</tt> allows users to drag-and-drop a panel to change its location.
+
A <tt>rowlayout</tt> lays out a container which can have multiple columns, it offers a 12-column grid out of the box. You can simply chooses the number of columns to occupy for each major content area, and may also skip columns for extra space without inserting space-inducing elements.  
  
When using <tt>Portallayout</tt>, you have to assign the width (either percentage or pixel) to each <tt>Portalchildren</tt>, or the result might depend on the browser, and not as expected.
+
The following diagram illustrates the rowlayout/rowchildren components and their various configurable parameters.
 +
 
 +
[[Image:ZKComRef_Rowlayout.PNG]]
  
 
= Example =
 
= Example =
[[Image:ZKComRef_Portallayout_Example.PNG]]
 
  
 +
Using rowlayout component is simple. First, use rowlayout to divide the horizontal space of its parent container into a number of columns. You can also optionally specify the column/spacing ratio. The default number of columns is 12, and the default column/spacing ratio is 1/3, which means column is 3 times wider than the spacing between columns. Spacing could be given as a ratio, a percentage or a floating-point number.
 +
 +
Next, use rowchildren component to place components into an integral number of these columns. You can also optionally specify how many columns to skip ahead.
  
 +
A sample usage is demonstrated below.
 
<source lang="xml" >
 
<source lang="xml" >
<portallayout>
+
<rowlayout ncols="12" spacing="1/3">
<portalchildren width="50%">
+
<rowchildren colspan="3" offset="2">
<panel height="150px" title="Yahoo">
+
</rowchildren>
<panelchildren>
+
</rowlayout>
<iframe width="100%" src="http://www.yahoo.com/"/>
 
</panelchildren>
 
</panel>
 
<panel height="300px" title="Google">
 
<panelchildren>
 
<iframe width="100%" src="http://www.google.com/"/>
 
</panelchildren>
 
</panel>
 
</portalchildren>
 
<portalchildren width="50%">
 
<panel height="150px" title="ZK">
 
<panelchildren>
 
<iframe width="100%" src="http://www.zkoss.org/"/>
 
</panelchildren>
 
</panel>
 
</portalchildren>
 
</portallayout>
 
</source>
 
 
 
= Row based layout =
 
[Since ZK 7.0.0]
 
 
 
If you want the portallayout displayed as row based layout, you can specify the ''orient'' property to ''horizontal''.
 
Default is ''vertical''.
 
 
 
For example,
 
 
 
<source lang="xml" high="1">
 
<portallayout orient="horizontal">
 
<portalchildren width="50%">
 
<panel height="150px" title="Yahoo">
 
<panelchildren>
 
<iframe width="100%" src="http://www.yahoo.com/"/>
 
</panelchildren>
 
</panel>
 
<panel height="300px" title="Google">
 
<panelchildren>
 
<iframe width="100%" src="http://www.google.com/"/>
 
</panelchildren>
 
</panel>
 
</portalchildren>
 
<portalchildren width="50%">
 
<panel height="150px" title="ZK">
 
<panelchildren>
 
<iframe width="100%" src="http://www.zkoss.org/"/>
 
</panelchildren>
 
</panel>
 
</portalchildren>
 
</portallayout>
 
 
</source>
 
</source>
  
Line 80: Line 35:
 
! <center>Event Type</center>
 
! <center>Event Type</center>
 
|-
 
|-
| <center>onPortalMove</center>
+
| None
| '''Event:''' <javadoc>org.zkoss.zkmax.ui.event.PortalMoveEvent</javadoc>
+
| None
Represents an event caused by a portal being moved.
 
 
 
 
|}
 
|}
 
*Inherited Supported Events: [[ZK_Component_Reference/Base_Components/XulElement#Supported_Events | XulElement]]
 
*Inherited Supported Events: [[ZK_Component_Reference/Base_Components/XulElement#Supported_Events | XulElement]]
  
 
=Supported Children=
 
=Supported Children=
  *[[ZK_Component_Reference/Layouts/Portallayout/Portalchildren | Portalchildren]]
+
  *[[ZK_Component_Reference/Layouts/Rowlayout/Rowchildren | Rowchildren]]
  
 
=Use Cases=
 
=Use Cases=
Line 106: Line 59:
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| 7.0.0
+
|
| October, 2013
+
|
| [http://tracker.zkoss.org/browse/ZK-1687 Portallayout supports row based orientation]
+
|]
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Revision as of 10:04, 18 May 2015

Rowlayout

Employment/Purpose

A rowlayout lays out a container which can have multiple columns, it offers a 12-column grid out of the box. You can simply chooses the number of columns to occupy for each major content area, and may also skip columns for extra space without inserting space-inducing elements.

The following diagram illustrates the rowlayout/rowchildren components and their various configurable parameters.

ZKComRef Rowlayout.PNG

Example

Using rowlayout component is simple. First, use rowlayout to divide the horizontal space of its parent container into a number of columns. You can also optionally specify the column/spacing ratio. The default number of columns is 12, and the default column/spacing ratio is 1/3, which means column is 3 times wider than the spacing between columns. Spacing could be given as a ratio, a percentage or a floating-point number.

Next, use rowchildren component to place components into an integral number of these columns. You can also optionally specify how many columns to skip ahead.

A sample usage is demonstrated below.

<rowlayout ncols="12" spacing="1/3">
	<rowchildren colspan="3" offset="2">
	</rowchildren>
</rowlayout>

Supported Events

Name
Event Type
None None

Supported Children

* Rowchildren

Use Cases

Version Description Example Location
     

Version History

Last Update : 2015/05/18


Version Date Content
]



Last Update : 2015/05/18

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