Tablelayout"

From Documentation
m ((via JWB))
(12 intermediate revisions by 6 users not shown)
Line 7: Line 7:
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.Tablelayout</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zkmax.layout.Tablelayout</javadoc>
 
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Tablelayout | TableLayout]]
 
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Tablelayout | TableLayout]]
 +
*{{ZK EE}}
  
 
= Employment/Purpose =
 
= Employment/Purpose =
Tablelayout lay outs a container as an HTML table whose columns can be specified, and rowspan and colspan of its child can also be specified to create complex layouts within the table.
+
Tablelayout lays out a container as an HTML table in which the columns can be specified, and rowspan and colspan of its child can also be specified to create complex layouts within the table.
  
 
= Example =
 
= Example =
 
[[Image:ZKComRef_Tablelayout_Example.PNG]]
 
[[Image:ZKComRef_Tablelayout_Example.PNG]]
  
 +
<source lang="xml" >
 +
<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>
 +
</source>
  
<source lang="xml" >
+
{{versionSince| 6.0.0}}
<?xml version="1.0" encoding="UTF-8"?>
+
 
 +
The child of tablechildren can be any component:
  
<?component name="panel" extends="panel" width="200px" height="200px" ?>
+
[[Image:ZKComRef_Tablelayout_Example_ZK6.PNG‎]]
  
<zk>
+
<source lang="xml" >
<label value="3 columns, 1 colspan, 1 rowspan" />
+
<tablelayout columns="2">
<tablelayout id="tbl" columns="3">
+
    <tablechildren>
<tablechildren id="tc1" colspan="2">
+
        <label value="Table 1" />
<panel title="table1" border="normal" maximizable="true"
+
    </tablechildren>
collapsible="true">
+
    <tablechildren>
<panelchildren>Panel</panelchildren>
+
        <button label="Table 2" />
</panel>
+
    </tablechildren>
</tablechildren>
+
    <tablechildren>
<tablechildren>
+
        <textbox value="Table 3" />
<panel title="table2" border="normal" maximizable="true"
+
    </tablechildren>
collapsible="true">
+
    <tablechildren>
<panelchildren>Panel</panelchildren>
+
        <window border="normal">
</panel>
+
        Table 4
</tablechildren>
+
        </window>
 +
    </tablechildren>
 
</tablelayout>
 
</tablelayout>
</zk>
 
 
</source>
 
</source>
  
=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 48: Line 78:
 
| None
 
| None
 
|}
 
|}
 +
*Inherited Supported Events: [[ZK_Component_Reference/Base_Components/XulElement#Supported_Events | XulElement]]
  
 
=Supported Children=
 
=Supported Children=
Line 53: Line 84:
 
  *[[ZK_Component_Reference/Layouts/Tablelayout/TableChildren | Tablechildren]]
 
  *[[ZK_Component_Reference/Layouts/Tablelayout/TableChildren | Tablechildren]]
  
=Use cases=
+
=Use Cases=
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
Line 64: Line 95:
  
 
=Version History=
 
=Version History=
 +
{{LastUpdated}}
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Revision as of 13:13, 7 January 2022

Tablelayout

Employment/Purpose

Tablelayout lays out a container as an HTML table in which the columns can be specified, and rowspan and colspan of its child can also be specified to create complex layouts within the table.

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

* Tablechildren

Use Cases

Version Description Example Location
     

Version History

Last Update : 2022/01/07


Version Date Content
     



Last Update : 2022/01/07

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