Treecol"

From Documentation
Line 96: Line 96:
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
|  
+
| 5.0.6
|  
+
| Feb 2011
|  
+
| Support onSort event
 
|}
 
|}
  
 
{{ZKComponentReferencePageFooter}}
 
{{ZKComponentReferencePageFooter}}

Revision as of 09:25, 1 February 2011

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 column.

Supported Children

*ALL

Use Cases

Version Description Example Location
     

Version History

Last Update : 2011/02/01


Version Date Content
5.0.6 Feb 2011 Support onSort event



Last Update : 2011/02/01

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