Portallayout"

From Documentation
Line 3: Line 3:
 
= Portallayout =
 
= Portallayout =
  
*Demonstration: [http://www.zkoss.org/zkdemo/userguide/#l4 Portallayout]
+
*Demonstration: [http://www.zkoss.org/zkdemo/layout/portal_layout Portallayout]
 
*Java API: <javadoc>org.zkoss.zkmax.zul.Portallayout</javadoc>
 
*Java API: <javadoc>org.zkoss.zkmax.zul.Portallayout</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.Portallayout</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.Portallayout</javadoc>
 +
*Style Guide: [http://books.zkoss.org/wiki/ZK_Style_Guide/XUL_Component_Specification/Portallayout Portallayout]
  
 
= Employment/Purpose =
 
= Employment/Purpose =

Revision as of 01:54, 26 November 2010

Portallayout

Employment/Purpose

A portallayout lays out a container which can have multiple columns, and each column may contain one or more panel. Portallayout provides a way to drag-and-drop panel into other portalchildren from the same portallayout.

Use Portallayout need assign width (either present or pixel) on every Portalchildren, or we cannot make sure about layout look.

Example

ZKComRef Portallayout Example.PNG


<portallayout>
	<portalchildren width="30%">
		<panel height="150px" title="Google Tools">
			<panelchildren>...</panelchildren>
		</panel>
		<panel height="300px" title="LabPixies Clock">
			<panelchildren>...</panelchildren>
		</panel>
	</portalchildren>
	<portalchildren width="30%">
		<panel height="150px" title="Google Tools">
			<panelchildren>...</panelchildren>
		</panel>
	</portalchildren>
</portallayout>

Supported events

Name
Event Type
onPortalMove
Event: PortalMoveEvent

Represents an event caused by a portal being moved.

Supported Children

* Portalchildren

Use cases

Version Description Example Location
     

Version History

Last Update : 2010/11/26


Version Date Content
     



Last Update : 2010/11/26

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