My questions:
-
I would like to have nodes (with URL attach to it) and whenever user click on the node, open the URL in the cell “c”, How do I do that?
-
Do I need frame in cell “c”?
-
If frame needed, how do I create frame in cell “c”?
Below is my screenshot, codes and xml
My code
<script src="dhtmlx/dhtmlxLayout/codebase/dhtmlxcommon.js"></script>
<script src="dhtmlx/dhtmlxLayout/codebase/dhtmlxlayout.js"></script>
<script src="dhtmlx/dhtmlxLayout/codebase/dhtmlxcontainer.js"></script>
<link rel="stylesheet" type="text/css" href="dhtmlx/dhtmlxLayout/codebase/skins/dhtmlxlayout.css">
<link rel="stylesheet" type="text/css" href="dhtmlx/dhtmlxLayout/codebase/skins/dhtmlxlayout_dhx_skyblue.css">
<script src="dhtmlx/dhtmlxAccordion/codebase/dhtmlxaccordion.js"></script>
<link rel="stylesheet" type="text/css" href="dhtmlx/dhtmlxAccordion/codebase/skins/dhtmlxaccordion_dhx_skyblue.css">
<script src="dhtmlx/dhtmlxTree/codebase/dhtmlxtree.js"></script>
<link rel="stylesheet" type="text/css" href="dhtmlx/dhtmlxTree/codebase/dhtmlxtree.css">
<style>
html, body {
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}
</style>
------------------------------------------
My XML
<?xml version='1.0' encoding='iso-8859-1'?> <![CDATA[History]]> <item id="geography">
<itemtext><![CDATA[<a href='http://www.yahoo.com'>Geography</a>]]></itemtext>
</item>
</item>
------------------------------------------