Treecol"

From Documentation
m
Line 6: Line 6:
 
*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: [http://books.zkoss.org/wiki/ZK_Style_Guide/XUL_Component_Specification/Treecol Treecol]
+
*Style Guide: [[ZK_Style_Guide/XUL_Component_Specification/Treecol| Treecol]]
  
 
= Employment/Purpose =
 
= Employment/Purpose =

Revision as of 09:17, 19 January 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
None None

Supported Children

*ALL

Use Cases

Version Description Example Location
     

Version History

Last Update : 2011/01/19


Version Date Content
     



Last Update : 2011/01/19

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