TableChildren"

From Documentation
Line 11: Line 11:
 
= Employment/Purpose =
 
= Employment/Purpose =
  
The cell of Tablelayout. The child component of Tablechildren only can be Panel.
+
The cell of Tablelayout. In ZK5 or before, the child component of Tablechildren only can be Panel.
 
+
After ZK6, the child of tablechildren can be any component.
  
 
= Example =
 
= Example =

Revision as of 02:04, 16 November 2011

Tablechildren

Employment/Purpose

The cell of Tablelayout. In ZK5 or before, the child component of Tablechildren only can be Panel. After ZK6, the child of tablechildren can be any component.

Example

ZKComRef Tablelayout Example.PNG

<tablelayout columns="2">
	<tablechildren>
		<panel title="Table 1" border="normal" maximizable="true"
			collapsible="true" width="200px" height="200px">
			<panelchildren>Panel Content</panelchildren>
		</panel>
	</tablechildren>
	<tablechildren>
		<panel title="Table 2" border="normal" maximizable="true"
			collapsible="true" width="200px" height="200px">
			<panelchildren>Panel Content</panelchildren>
		</panel>
	</tablechildren>
	<tablechildren>
		<panel title="Table 3" border="normal" maximizable="true"
			collapsible="true" width="200px" height="200px">
			<panelchildren>Panel Content</panelchildren>
		</panel>
	</tablechildren>
	<tablechildren>
		<panel title="Table 4" border="normal" maximizable="true"
			collapsible="true" width="200px" height="200px">
			<panelchildren>Panel Content</panelchildren>
		</panel>
	</tablechildren>
</tablelayout>

Supported Events

Name
Event Type
None None

Supported Children

* Panel

Use Cases

Tablelayout

Version History

Last Update : 2011/11/16


Version Date Content
     



Last Update : 2011/11/16

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