A treefooter
is a bottom column of tree, Its parent must be Treefoot.
You colud place any child in a tree footer.
<window title="tree demo" border="normal" width="400px"> <tree id="tree" width="90%" rows="2"> <treecols sizable="true"> <treecol label="Name"/> <treecol label="Description"/> </treecols> <treechildren> <treeitem> <treerow> <treecell label="Item 1"/> <treecell label="Item 1 description"/> </treerow> <treechildren> <treeitem> <treerow> <treecell label="Item 1.2"/> <treecell label="Item 1.2 description"/> </treerow> </treeitem> </treechildren> </treeitem> </treechildren> <treefoot > <treefooter><image src="/img/folder.gif"/>Count</treefooter> <treefooter><image src="/img/folder.gif"/>Summary</treefooter> </treefoot> </tree> </window>