Sample: dhtmlxTree Limited paging (demo, not stable) dhtmlxTree main page
X

There is the ability to limit an amount of tree's hodes on page.
It is set by the enablePaging method.

 
<div id="treeboxbox_tree" style="width:200;height:200"></div>
<script>
 
        tree=new dhtmlXTreeObject("treeboxbox_tree","100%","100%",0);
        tree.setImagePath("../imgs/");
        tree.enableSmartXMLParsing(true);
        tree.enablePaging(true,50);
        tree.loadXML("tree_perf_xml.php")
</script>