-
Bug
-
Resolution: Fixed
-
Major
-
5.0.10, 6.0.2
-
Security Level: Jimmy
-
None
-
None
As code below, the Item 29 is selected but Combobox will not scroll to correct position after open.
<zk> <combobox id="cbx" xmlns:w="client"> <attribute name="onCreate"><![CDATA[ for (int i = 0; i < 30; i++) { Comboitem ci = new Comboitem("Item "+i); ci.setParent(self); self.setSelectedItem(ci); } ]]></attribute> </combobox> </zk>