Treerow"
From Documentation
Jimmyshiau (talk | contribs) |
Tmillsclare (talk | contribs) m |
||
Line 10: | Line 10: | ||
Treerow is a single row in the tree, it is the main content of treeitem. Treerow can contains multiple treecell, each treecell represent one column in this row by sequencial. A treecell can contains any component in it, such as label, image, textbox etc. | Treerow is a single row in the tree, it is the main content of treeitem. Treerow can contains multiple treecell, each treecell represent one column in this row by sequencial. A treecell can contains any component in it, such as label, image, textbox etc. | ||
− | |||
− | |||
Line 81: | Line 79: | ||
=Supported Children= | =Supported Children= | ||
− | [[ZK_Component_Reference/Data/Tree/Treecell | Treecell]] | + | *[[ZK_Component_Reference/Data/Tree/Treecell | Treecell]] |
=Use cases= | =Use cases= | ||
Line 92: | Line 90: | ||
! Version !! Date !! Content | ! Version !! Date !! Content | ||
|- | |- | ||
− | | 5.0. | + | | 5.0.2 |
| 5/5/2010 | | 5/5/2010 | ||
| Initialization | | Initialization |
Revision as of 03:30, 14 May 2010
Treerow
Employment/Purpose
Treerow is a single row in the tree, it is the main content of treeitem. Treerow can contains multiple treecell, each treecell represent one column in this row by sequencial. A treecell can contains any component in it, such as label, image, textbox etc.
Example
<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
None | None |
Supported Children
* Treecell
Use cases
Version History
Version | Date | Content |
---|---|---|
5.0.2 | 5/5/2010 | Initialization |