-
Bug
-
Resolution: Fixed
-
Normal
-
7.0.5
-
Security Level: Jimmy
-
None
the page control didn't show with the following sample:
<zk> <hlayout height="150px"> <tree mold="paging" pageSize="1" vflex="1" hflex="1"> <treecols> <treecol label="Treecell 16px with paging and pageSize 1" /> </treecols> <treechildren> <treeitem forEach="1,2,3,4"> <treerow> <treecell label="Item ${each}" /> </treerow> </treeitem> </treechildren> </tree> <tree mold="paging" pagingPosition="bottom" autopaging="true" vflex="1" hflex="1"> <treecols> <treecol label="Treecell 16px with paging and pageSize 1 and autopaging" /> </treecols> <treechildren> <treeitem forEach="1,2,3,4"> <treerow> <treecell label="Item ${each}" /> </treerow> </treeitem> </treechildren> </tree> <grid mold="paging" pagingPosition="bottom" autopaging="true" vflex="1" hflex="1"> <columns> <column label="Grid" /> </columns> <rows> <row forEach="1,2,3,4"> <label value="Item ${each}" /> </row> </rows> </grid> </hlayout> </zk>