Hello,
I’ve the following tree :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<body>
<div id="treetable"></div>
<script type="text/javascript" src="../../dhtmlx30/dhtmlxTree/codebase/dhtmlxcommon.js"></script>
<script type="text/javascript" src="../../dhtmlx30/dhtmlxTree/codebase/dhtmlxtree.js"></script>
<script type="text/javascript" charset="utf-8">
tree=new dhtmlXTreeObject("treetable","100%","100%",0);
tree.setImagePath("../../dhtmlx30/dhtmlxTree/codebase/imgs/");
tree.loadXML("treetable.xml");
</script>
</body>
</html>
and the following XML :
<?xml version="1.0" encoding="iso-8859-1"?>
<tree id="0">
<item id="1" text="<table border=1><tr><td>34</td></tr></table>"> </item>
<item id="2" text="<table border=1><tr><td>33</td></tr></table>">
<item id="3" text="<table border=1><tr><td>32</td></tr></table>"> </item>
</item>
<item id="4" text="<table border=1><tr><td>33</td></tr></table>"> </item>
<item id="5" text="<table border=1><tr><td>33</td></tr></table>"> </item>
</tree>
The problem is the tree is rendered with a big height between each row
How can I solve this problem ?
Thanks for your answer