Rowchildren"

From Documentation
(Created page with "{{ZKComponentReferencePageHeader}} = Rowchildren = *Demonstration: [http://www.zkoss.org/zkdemo/layout/portal_layout Portallayout] *Java API: <javadoc>org.zkoss.zkmax.zul.Porta...")
 
Line 3: Line 3:
 
= Rowchildren =
 
= Rowchildren =
  
*Demonstration: [http://www.zkoss.org/zkdemo/layout/portal_layout Portallayout]
+
*Java API: <javadoc>org.zkoss.zkmax.zul.Rowchildren</javadoc>
*Java API: <javadoc>org.zkoss.zkmax.zul.Portalchildren</javadoc>
+
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.Rowchildren</javadoc>
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.Portalchildren</javadoc>
+
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification | Rowchildren]]
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Portallayout| Portallayout]]
 
 
*{{ZK EE}}
 
*{{ZK EE}}
  
 
= Employment/Purpose =
 
= Employment/Purpose =
  
The column of [[ZK_Component_Reference/Layouts/Portallayout | Portallayout]]
+
The column of [[ZK_Component_Reference/Layouts/Rowchildren | Rowchildren]]
  
Child of Portalchildren can only be [[ ZK_Component_Reference/Containers/Panel | Panel]]
+
=Properties=
  
= Example =
+
== Colspan ==
  
[[Image:ZKComRef_Portallayout_Example.PNG]]
+
By default, the colspan of Rowchildren is 1.
  
 +
<source lang="xml">
 +
<rowlayout>
 +
<rowchildren colspan="10">
 +
<window border="normal" title="colspan=10"/>
 +
</rowchildren>
 +
</rowlayout>
 +
</source>
  
<source lang="xml" >
+
== Offset ==
<portallayout>
+
 
<portalchildren width="50%">
+
By default, the offset of Rowchildren is 0.
<panel height="150px" title="Yahoo">
+
 
<panelchildren>
+
<source lang="xml">
<iframe width="100%" src="http://www.yahoo.com/"/>
+
<rowlayout>
</panelchildren>
+
<rowchildren offset="10">
</panel>
+
<window border="normal" title="offset=10"/>
<panel height="300px" title="Google">
+
</rowchildren>
<panelchildren>
+
</rowlayout>
<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 55: Line 49:
 
|}
 
|}
 
*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=
 
 
*[[ZK_Component_Reference/Containers/Panel | Panel]]
 
 
=Use Cases=
 
 
{| border='1px' | width="100%"
 
! Version !! Description !! Example Location
 
|-
 
| &nbsp;
 
| &nbsp;
 
| &nbsp;
 
|}
 
  
 
=Version History=
 
=Version History=

Revision as of 10:17, 18 May 2015

Rowchildren

Employment/Purpose

The column of Rowchildren

Properties

Colspan

By default, the colspan of Rowchildren is 1.

<rowlayout>
	<rowchildren colspan="10">
		<window border="normal" title="colspan=10"/>
	</rowchildren>
</rowlayout>

Offset

By default, the offset of Rowchildren is 0.

<rowlayout>
	<rowchildren offset="10">
		<window border="normal" title="offset=10"/>
	</rowchildren>
</rowlayout>

Supported Events

Name
Event Type
None None

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.