-
Bug
-
Resolution: Fixed
-
Normal
-
8.0.0, 7.0.6.1
-
None
the example below reproduces the issue, when a model element is removed before the Combobox has initially rendered
<zk> <combobox id="combo"/> <zscript><![CDATA[ ListModelList model = new ListModelList(); model.add("aaaa"); model.add("bbbb"); model.add("cccc"); combo.setModel(model); //workaround to force rendering all items //combo.onInitRender(new Event("", combo, 0)); model.remove(1); ]]></zscript> </zk>