Treechildren"

From Documentation
Line 3: Line 3:
 
= Treechildren =
 
= Treechildren =
  
*Demonstration: [http://www.zkoss.org/zkdemo/userguide/#g11 Tree Demo]
+
*Demonstration: [http://www.zkoss.org/zkdemo/tree/dynamic_styling Tree (Dynamic Styling)]
 
*Java API: <javadoc>org.zkoss.zul.Treechildren</javadoc>
 
*Java API: <javadoc>org.zkoss.zul.Treechildren</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treechildren</javadoc>
 
*JavaScript API: <javadoc directory="jsdoc">zul.sel.Treechildren</javadoc>
 +
*Style Guide: [http://books.zkoss.org/wiki/ZK_Style_Guide/XUL_Component_Specification/Treechildren Treechildren]
  
 
= Employment/Purpose =
 
= Employment/Purpose =

Revision as of 04:35, 17 November 2010

Treechildren

Employment/Purpose

Treechildren contains a collection of treeitem components. It is main body of the Tree and it also the main body of a Treeitem's children.

You can change the page size of each treechildren instance by modifying the pageSize property

Example

Treechildren.png

<window title="tree demo" border="normal" width="450px">
	<tree id="tree" width="90%">
		<treecols sizable="true">
			<treecol label="Name" />
			<treecol label="Description" />
		</treecols>
		<treechildren>
			<treeitem>
				<treerow>
					<treecell label="Item 1" />
					<treecell label="Item 1 description" />
				</treerow>
			</treeitem>
			<treeitem>
				<treerow>
					<treecell label="Item 2" />
					<treecell label="Item 2 description" />
				</treerow>
				<treechildren>
					<treeitem>
						<treerow>
							<treecell label="Item 2.1" />
						</treerow>
						<treechildren pageSize="3">
							<treeitem>
								<treerow>
									<treecell label="Item 2.1.1" />
								</treerow>
							</treeitem>
							<treeitem>
								<treerow>
									<treecell label="Item 2.1.2" />
								</treerow>
							</treeitem>
							<treeitem>
								<treerow>
									<treecell label="Item 2.1.3" />
								</treerow>
							</treeitem>
							<treeitem>
								<treerow>
									<treecell label="Item 2.1.4" />
								</treerow>
							</treeitem>
						</treechildren>
					</treeitem>
					<treeitem>
						<treerow>
							<treecell label="Item 2.2" />
							<treecell label="Item 2.2 is something who cares" />
						</treerow>
					</treeitem>
				</treechildren>
			</treeitem>
			<treeitem label="Item 3" />
		</treechildren>
	</tree>
</window>

Supported events

Name
Event Type
None None

Supported Children

* Treeitem

Use cases

Version Description Example Location
     

Version History

Version Date Content
     



Last Update : 2010/11/17

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