-
Bug
-
Resolution: Fixed
-
Normal
-
8.5.1.2
-
Security Level: Jimmy
-
ZK 8.5.2 S1, ZK 8.5.2 S2
Steps to Reproduce
run combo-in-tree-simple.zul
close / open the root node
Current Result
the widths of the comboboxes change overlapping the following text
Expected Result
comboboxes keep their configured width of 100px
Workaround
call fire size for (re-)rerendered comboboxes
zk.afterLoad('zul.inp', function() { var xCombobox = {}; zk.override(zul.inp.Combobox.prototype, xCombobox, { bind_ : function() { var result = xCombobox.bind_.apply(this, arguments); zUtl.fireSized(this); return result; } });//zk.override });//zk.afterLoad
- relates to
-
ZK-3835 Improve Tree client ROD rendering method
- Closed