Treecol"

From Documentation
 
(18 intermediate revisions by 6 users not shown)
Line 3: Line 3:
 
= Treecol =
 
= Treecol =
  
*Demonstration:  
+
*Demonstration: [http://www.zkoss.org/zkdemo/tree/dynamic_styling Tree (Dynamic Styling)]
 
*Java API: <javadoc>org.zkoss.zul.Treecol</javadoc>
 
*Java API: <javadoc>org.zkoss.zul.Treecol</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treecol</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treecol</javadoc>
 +
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Treecol| Treecol]]
  
 
= Employment/Purpose =
 
= Employment/Purpose =
 +
A <code>treecol </code>is a top column of tree, Its parent must be <code>Treecols</code>.
  
[[Image:treecol.png]]
+
= Example =
 +
[[Image:ZKComRef_Treeitem.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>
Line 40: Line 62:
 
</source>
 
</source>
  
= Example =
+
=Supported Events=
 
 
 
 
 
 
 
 
  
=Supported events=
+
{| class='wikitable' | width="100%"
 
 
{| border="1" | width="100%"
 
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
 +
 
|-
 
|-
| None
+
| <center><code>onSort</code></center>
| None
+
| '''Event:''' <javadoc>org.zkoss.zk.ui.event.Event</javadoc>
 +
Denotes user has sorted the treeitem of this treecol.
 +
 
 
|}
 
|}
 +
*Inherited Supported Events: [[ZK_Component_Reference/Base_Components/HeaderElement#Supported_Events | HeaderElement]]
  
 
=Supported Children=
 
=Supported Children=
Line 60: Line 80:
 
  *ALL
 
  *ALL
  
=Use cases=
+
=Use Cases=
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Description !! Example Location
 
! Version !! Description !! Example Location
 
|-
 
|-
| 5.0+
+
| &nbsp;
 
| &nbsp;
 
| &nbsp;
 
| &nbsp;
 
| &nbsp;
Line 71: Line 91:
  
 
=Version History=
 
=Version History=
 +
{{LastUpdated}}
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| 5.x.x
+
| 5.0.6
| x/x/20xx
+
| Feb 2011
| Initialization
+
| Support onSort event
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Latest revision as of 14:16, 12 January 2022

Treecol

Employment/Purpose

A treecol is a top column of tree, Its parent must be Treecols.

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
onSort
Event: Event

Denotes user has sorted the treeitem of this treecol.

Supported Children

*ALL

Use Cases

Version Description Example Location
     

Version History

Last Update : 2022/01/12


Version Date Content
5.0.6 Feb 2011 Support onSort event



Last Update : 2022/01/12

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