Dear JQXWidget Team,
I have two jqxTree objects and they are created from HTML as follows
Tree 1
<div id='jqxTree1' style='visibility: hidden; float: left; margin-left: 20px;'>
<ul>
<li>Root</li>
</ul>
</div>
and I created the tree as $('#jqxTree1').jqxTree({ height: '450px', width: '300px'});
and Tree 2
<div id='jqxTree2' style='visibility: hidden; float: left; margin-left: 20px;'>
<ul>
<li>Child1</li>
<li>Child2</li>
<li>Child3</li>
</ul>
</div>
and I created the tree as $('#jqxTree2').jqxTree({ height: '450px', width: '300px'});
Now if I want to append Tree 2 into Tree 1 how I can do that using javascript only ? I need to do this programmatically and hence I cannot do it in HTML. Please note I have to create both of the tree from HTML code and join them using javascript.
please help me..
thanks and regards
Sumit Roy