Treecols"

From Documentation
m ((via JWB))
 
(4 intermediate revisions by 4 users not shown)
Line 6: Line 6:
 
*Java API: <javadoc>org.zkoss.zul.Treecols</javadoc>
 
*Java API: <javadoc>org.zkoss.zul.Treecols</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treecols</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treecols</javadoc>
*Style Guide: [http://books.zkoss.org/wiki/ZK_Style_Guide/XUL_Component_Specification/Treecol Treecols]
+
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Treecol| Treecols]]
  
 
= Employment/Purpose =
 
= Employment/Purpose =
  
A <tt>treecols </tt>is main part of tree which contains set of columns. The set of columns is defined by a number of <tt>treecol </tt>components. Each column will appear as a column at the top of the tree.
+
A <code>treecols </code>is main part of tree which a contains set of columns. The set of columns is defined by a number of <code>treecol </code>components. Each column will appear as a column at the top of the tree.
  
 
= Example =
 
= Example =
 +
[[Image:ZKComRef_Treeitem.png]]
  
[[Image:treecol.png]]
+
 
 
 
<source lang="xml" >
 
<source lang="xml" >
 
 
<window title="tree demo" border="normal" width="400px">
 
<window title="tree demo" border="normal" width="400px">
<tree id="tree" width="90%" rows="2">
+
<tree id="tree" width="90%">
 
<treecols sizable="true">
 
<treecols sizable="true">
 
<treecol label="Name" />
 
<treecol label="Name" />
 
<treecol label="Description" />
 
<treecol label="Description" />
<treecol label="Remark" />
 
 
</treecols>
 
</treecols>
 
<treechildren>
 
<treechildren>
 
<treeitem>
 
<treeitem>
 
<treerow>
 
<treerow>
<treecell label="Item 1" />
+
<treecell>
<treecell label="Item 1 description" />
+
<image src="/img/folder.gif" />
<treecell label="Item 1 remark" />
+
Item 1
 +
</treecell>
 +
<treecell>
 +
<textbox value="Item 1 description" />
 +
</treecell>
 +
</treerow>
 +
</treeitem>
 +
<treeitem>
 +
<treerow>
 +
<treecell label="Item 2" />
 +
<treecell label="Item 2 description" />
 
</treerow>
 
</treerow>
 
<treechildren>
 
<treechildren>
<treeitem>
+
<treeitem open="false">
 
<treerow>
 
<treerow>
<treecell label="Item 1.2" />
+
<treecell label="Item 2.1">
<treecell label="Item 1.2 description" />
+
<image src="/img/folder.gif" />
 +
</treecell>
 
</treerow>
 
</treerow>
 +
<treechildren>
 +
<treeitem>
 +
<treerow>
 +
<treecell label="Item 2.1.1" />
 +
</treerow>
 +
</treeitem>
 +
</treechildren>
 
</treeitem>
 
</treeitem>
 
</treechildren>
 
</treechildren>
 
</treeitem>
 
</treeitem>
 +
<treeitem label="Item 3" />
 
</treechildren>
 
</treechildren>
 
</tree>
 
</tree>
 
</window>
 
</window>
+
</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 66: Line 82:
 
=Use cases=
 
=Use cases=
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
Line 76: Line 92:
 
=Version History=
 
=Version History=
 
{{LastUpdated}}
 
{{LastUpdated}}
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 10:39, 12 January 2022

Treecols

Employment/Purpose

A treecols is main part of tree which a contains set of columns. The set of columns is defined by a number of treecol components. Each column will appear as a column at the top of the tree.

Example

ZKComRef Treeitem.png


<window title="tree demo" border="normal" width="400px">
	<tree id="tree" width="90%">
		<treecols sizable="true">
			<treecol label="Name" />
			<treecol label="Description" />
		</treecols>
		<treechildren>
			<treeitem>
				<treerow>
					<treecell>
						<image src="/img/folder.gif" />
						Item 1
					</treecell>
					<treecell>
						<textbox value="Item 1 description" />
					</treecell>
				</treerow>
			</treeitem>
			<treeitem>
				<treerow>
					<treecell label="Item 2" />
					<treecell label="Item 2 description" />
				</treerow>
				<treechildren>
					<treeitem open="false">
						<treerow>
							<treecell label="Item 2.1">
								<image src="/img/folder.gif" />
							</treecell>
						</treerow>
						<treechildren>
							<treeitem>
								<treerow>
									<treecell label="Item 2.1.1" />
								</treerow>
							</treeitem>
						</treechildren>
					</treeitem>
				</treechildren>
			</treeitem>
			<treeitem label="Item 3" />
		</treechildren>
	</tree>
</window>

Supported Events

Name
Event Type
None None

Supported Children

* Treecol 

Use cases

Version Description Example Location
     

Version History

Last Update : 2022/01/12


Version Date Content
     



Last Update : 2022/01/12

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