Treerow"

From Documentation
m ((via JWB))
 
(7 intermediate revisions by 4 users not shown)
Line 3: Line 3:
 
= Treerow  =
 
= Treerow  =
  
*Demonstration: [http://www.zkoss.org/zkdemo/tree Tree]
+
*Demonstration: [http://www.zkoss.org/zkdemo/tree/dynamic_styling Tree (Dynamic Styling)]
 
*Java API: <javadoc>org.zkoss.zul.Treerow</javadoc>
 
*Java API: <javadoc>org.zkoss.zul.Treerow</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treerow</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treerow</javadoc>
*Style Guide: [http://books.zkoss.org/wiki/ZK_Style_Guide/XUL_Component_Specification/Treerow Treerow]
+
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Treerow| Treerow]]
  
 
= Employment/Purpose =
 
= Employment/Purpose =
  
Treerow is a single row in the tree, it is the main content of treeitem. Treerow can contains multiple treecell, each treecell represent one column in this row by sequencial. A treecell can contains any component in it, such as label, image, textbox etc.
+
Treerow is a single row in the tree. It is the main content of treeitem. Treerow can contains multiple treecell, each treecell represent one column in this row by sequencial. A treecell can contains any component in it, such as label, image, textbox etc.
 
 
 
 
  
 
= Example =
 
= Example =
  
[[Image:treeitem.png]]  
+
[[Image:ZKComRef_Treeitem.png]]  
  
 
<source lang="xml" >
 
<source lang="xml" >
Line 65: Line 63:
 
</source>
 
</source>
  
 +
=Supported Events=
  
 
+
{| class='wikitable' | width="100%"
 
 
=Supported events=
 
 
 
{| border="1" | width="100%"
 
 
! <center>Name</center>
 
! <center>Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
Line 77: Line 72:
 
| None
 
| None
 
|}
 
|}
 +
 +
*Inherited Supported Events: [[ZK_Component_Reference/Base_Components/XulElement#Supported_Events | XulElement]]
  
 
=Supported Children=
 
=Supported Children=
Line 82: Line 79:
 
  *[[ZK_Component_Reference/Data/Tree/Treecell | Treecell]]
 
  *[[ZK_Component_Reference/Data/Tree/Treecell | Treecell]]
  
=Use cases=
+
=Use Cases=
  
[[ZK_Component_Reference/Data/Tree#Use_cases | Tree]]
+
[[ZK_Component_Reference/Data/Tree#Use_Cases | Tree]]
  
 
=Version History=
 
=Version History=
 +
{{LastUpdated}}
  
{| border='1px' | width="100%"
+
{| class='wikitable' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-

Latest revision as of 11:05, 7 January 2022

Treerow

Employment/Purpose

Treerow is a single row in the tree. It is the main content of treeitem. Treerow can contains multiple treecell, each treecell represent one column in this row by sequencial. A treecell can contains any component in it, such as label, image, textbox etc.

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

* Treecell

Use Cases

Tree

Version History

Last Update : 2022/01/07


Version Date Content
5.0.1 March 2010 Allow the context, tooltip and popup properties to be specified in Treerow.



Last Update : 2022/01/07

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