-
Bug
-
Resolution: Fixed
-
Major
-
9.0.1, 9.0.1.2
-
None
-
Security Level: Jimmy
-
None
Steps to Reproduce
1. run attached zul
2. click "search" button
Current Result
Expected Result
only shows 3 rows
Debug Information
- after resizing the browser window, it renders as expected.
- similar to
ZK-4571but is a different case - Grid with visibleRows is okay
- A
ZK-4513side effect, it uses a skipper and fireSized will be ignored https://github.com/zkoss/zk/blob/v9.0.1/zk/src/archive/web/js/zk/widget.js#L2621
Workaround
<script><![CDATA[ var old = {}; zk.afterLoad('zul.sel', function () { zk.override(zul.sel.Listbox.prototype, old, { getOuterPartialSkipper_: function () { return null; } }); }); ]]> </script>