-
Bug
-
Resolution: Fixed
-
Normal
-
9.5.0.2
-
Security Level: Jimmy
-
None
Steps to Reproduce
https://zkfiddle.org/sample/3skcjsa/1-frozen-scroll
Scroll right untill items 10, 11, 12 are in view
Click in the header's textboxes a few times
Current Result
scrollbar is set to the left position, while view is still on the right side (items 10, 11, 12)
Expected Result
scrollbar position and view position should stay in sync
Debug Information
Workaround
<script><![CDATA[ zk.afterLoad("zul.sel", function () { var _xListbox = {}; zk.override(zul.sel.Listbox.prototype, _xListbox, { _doSyncScroll: function() { var self = this; var result = _xListbox._doSyncScroll.apply(this, arguments); setTimeout(function(){ self.frozen.syncScrollByParentBody(); },0); return result; } }); }); ]]></script>
- relates to
-
ZK-5678 moving focus among treecells of a frozen tree but the scroll bar doesn't sync to the corresponding position
-
- Open
-