Steps to reproduce
- load the zul below
<zk> <zscript><![CDATA[ List items = new ArrayList(); for(int i = 0; i <= 250; i++) { items.add("Item " + i); } //model.setMultiple(true); ]]></zscript> <hlayout> <vlayout> //single selection works as expected <listbox width="300px" mold="paging" pageSize="100" height="300px" checkmark="true" pagingPosition="top" multiple="false"> <listhead> <listheader label="col"/> </listhead> <listitem forEach="${items}" label="${each}"/> </listbox> </vlayout> </hlayout> </zk>
- select "item 199" at the 2nd page
- press down key (or page down key)
result
- relates to
-
ZK-2987 Going to the last page causes an empty-like listbox
- Closed