Treecell"

From Documentation
Line 63: Line 63:
 
=Supported events=
 
=Supported events=
  
{| border="1" | width="100%"
+
{| border="1"
! <center>Name</center>
+
! <center>Event Name</center>
 
! <center>Event Type</center>
 
! <center>Event Type</center>
 +
 +
|-
 +
| <center><tt>onClick</tt></center>
 +
| [#MouseEvent org.zkoss.zk.ui.event.MouseEvent]
 +
 +
'''Description: '''
 +
 +
Denotes user has clicked the component.
 +
 +
|-
 +
| <center><tt>onRightClick</tt></center>
 +
| [#MouseEvent org.zkoss.zk.ui.event.MouseEvent]
 +
 +
'''Description: '''
 +
 +
Denotes user has right-clicked the component.
 +
 
|-
 
|-
| None
+
| <center><tt>onDoubleClick</tt></center>
| None
+
| [#MouseEvent org.zkoss.zk.ui.event.MouseEvent]
 +
 
 +
'''Description: '''
 +
 
 +
Denotes user has double-clicked the component.
 +
 
 
|}
 
|}
  
Line 90: Line 112:
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| 5.x.x
+
| 5.0
| x/x/20xx
+
| 4/30/2010
 
| Initialization
 
| Initialization
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Revision as of 22:11, 2 May 2010

Treecell

Employment/Purpose

Treecell represent one column in a treerow by sequencial. Treecell can contains any component in it, such as label, image, textbox etc.

Example

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

Event Name
Event Type
onClick
[#MouseEvent org.zkoss.zk.ui.event.MouseEvent]

Description:

Denotes user has clicked the component.

onRightClick
[#MouseEvent org.zkoss.zk.ui.event.MouseEvent]

Description:

Denotes user has right-clicked the component.

onDoubleClick
[#MouseEvent org.zkoss.zk.ui.event.MouseEvent]

Description:

Denotes user has double-clicked the component.

Supported Children

*ALL

Use cases

Version Description Example Location
5.0+    

Version History

Version Date Content
5.0 4/30/2010 Initialization



Last Update : 2010/05/02

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