-
Bug
-
Resolution: Fixed
-
Normal
-
5.0.8, Freshly
-
None
-
IE6/7 only
Related to this case - http://sourceforge.net/tracker/?func=detail&aid=3167027&group_id=152762&atid=785191
You can also test with zktest/test2/B50-3167027.zul
For example, after you add a new item, in IE6/7 will show nothing.
<zk>
<html><![CDATA[
<ol>
<li>Click "add node" button.</li>
<li>A "new item" shall appear.</li>
</ol>
]]></html>
<button label="add node">
<attribute name="onClick"><![CDATA[
Treerow tr = new Treerow();
item.appendChild(tr);
tr.appendChild(new Treecell("new Item"));
]]></attribute>
</button>
<tree>
<treechildren>
<treeitem id="item"/>
</treechildren>
</tree>
</zk>