TableChildren"

From Documentation
 
(8 intermediate revisions by 3 users not shown)
Line 11: Line 11:
 
= Employment/Purpose =
 
= Employment/Purpose =
  
The cell of Tablelayout. In ZK5 or before, the child component of Tablechildren only can be Panel.
+
The cell of Tablelayout. The child component of Tablechildren can only be Panel.
After ZK6, the child of tablechildren can be any component.
+
 
 +
{{versionSince| 6.0.0}}
 +
 
 +
The child of tablechildren can be any component.
  
 
= Example =
 
= Example =
 
Example for ZK5 or before:
 
  
 
[[Image:ZKComRef Tablelayout Example.PNG]]
 
[[Image:ZKComRef Tablelayout Example.PNG]]
Line 49: Line 50:
 
</source>
 
</source>
  
Example for ZK6 or after:
+
{{versionSince|6.0.0}}
 +
 
 +
The child of tablechildren can be any component.
  
 
[[Image:ZKComRef_Tablelayout_Example_ZK6.PNG‎]]
 
[[Image:ZKComRef_Tablelayout_Example_ZK6.PNG‎]]
Line 74: Line 77:
 
=Supported Events=
 
=Supported Events=
  
{| border="1" | width="100%"
+
{| class='wikitable' | width="100%"
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 86: Line 89:
  
 
  *[[ZK_Component_Reference/Containers/Panel | Panel]]
 
  *[[ZK_Component_Reference/Containers/Panel | Panel]]
 +
 +
{{versionSince|6.0.0}}
 +
 +
* Any
  
 
=Use Cases=
 
=Use Cases=
Line 93: Line 100:
 
{{LastUpdated}}
 
{{LastUpdated}}
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 08:44, 8 July 2022

Tablechildren

Employment/Purpose

The cell of Tablelayout. The child component of Tablechildren can only be Panel.

Since 6.0.0

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>

Since 6.0.0

The child of tablechildren can be any component.

ZKComRef Tablelayout Example ZK6.PNG

	<tablelayout columns="2">
	    <tablechildren>
	        <label value="Table 1" />
	    </tablechildren>
	    <tablechildren>
	        <button label="Table 2" />
	    </tablechildren>
	    <tablechildren>
	        <textbox value="Table 3" />
	    </tablechildren>
	    <tablechildren>
	        <window border="normal">
	        	Table 4
	        </window>
	    </tablechildren>
	</tablelayout>

Supported Events

Name
Event Type
None None

Supported Children

* Panel

Since 6.0.0

* Any

Use Cases

Tablelayout

Version History

Last Update : 2022/07/08


Version Date Content
     



Last Update : 2022/07/08

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