Treecol"
From Documentation
Tmillsclare (talk | contribs) |
Jimmyshiau (talk | contribs) |
||
Line 3: | Line 3: | ||
= Treecol = | = Treecol = | ||
− | *Demonstration: | + | *Demonstration: [http://www.zkoss.org/zkdemo/tree/dynamic_styling Tree (Dynamic Styling)] |
*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] | ||
= Employment/Purpose = | = Employment/Purpose = |
Revision as of 06:32, 17 November 2010
Treecol
- Demonstration: Tree (Dynamic Styling)
- Java API: Treecol
- JavaScript API: Treecol
- Style Guide: Treecol
Employment/Purpose
A treecol is a top column of tree, Its parent must be Treecols.
Example
<window title="tree demo" border="normal" width="400px">
<tree id="tree" width="90%" rows="2">
<treecols sizable="true">
<treecol label="Name" />
<treecol label="Description" />
<treecol label="Remark" />
</treecols>
<treechildren>
<treeitem>
<treerow>
<treecell label="Item 1" />
<treecell label="Item 1 description" />
<treecell label="Item 1 remark" />
</treerow>
<treechildren>
<treeitem>
<treerow>
<treecell label="Item 1.2" />
<treecell label="Item 1.2 description" />
</treerow>
</treeitem>
</treechildren>
</treeitem>
</treechildren>
</tree>
</window>
Supported events
None | None |
Supported Children
*NONE
Use cases
Version | Description | Example Location |
---|---|---|
Version History
Version | Date | Content |
---|---|---|