mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 21:43:22 +01:00
67 lines
1.7 KiB
HTML
67 lines
1.7 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>DHTML Tree samples. dhtmlXTree - Autoloading from XML</title>
|
||
|
</head>
|
||
|
<style>
|
||
|
body {font-size:12px}
|
||
|
.{font-family:arial;font-size:12px}
|
||
|
h1 {cursor:hand;font-size:16px;margin-left:10px;line-height:10px}
|
||
|
xmp {color:green;font-size:12px;margin:0px;font-family:courier;background-color:#e6e6fa;padding:2px}
|
||
|
</style>
|
||
|
<body>
|
||
|
<h1>Autoloading from XML</h1>
|
||
|
<link rel="STYLESHEET" type="text/css" href="../css/dhtmlXTree.css">
|
||
|
<script src="../js/dhtmlXCommon.js"></script>
|
||
|
<script src="../js/dhtmlXTree.js"></script>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td valign="top">
|
||
|
<!--- [ Scand: <div id="treeboxbox_tree2" style="width:250; height:218;background-color:#f5f5f5;border :1px solid Silver;; overflow:auto;"></div>
|
||
|
<br>
|
||
|
<br> ] --->
|
||
|
|
||
|
<div id="treeboxbox_tree" style="width:250; height:218;background-color:#f5f5f5;border :1px solid Silver;; overflow:auto;"></div>
|
||
|
</td>
|
||
|
<td rowspan="2" style="padding-left:25" valign="top">
|
||
|
Tree has unlimmited level count. Each new level loaded from asp script.
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td> </td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<hr>
|
||
|
<XMP>
|
||
|
<div id="treeboxbox_tree" style="width:200;height:200"></div>
|
||
|
<script>
|
||
|
tree=new dhtmlXTreeObject("treeboxbox_tree","100%","100%",0);
|
||
|
tree.setImagePath("../imgs/");
|
||
|
//link tree to asp script
|
||
|
tree.setXMLAutoLoading("xml.php");
|
||
|
|
||
|
//load first level of tree
|
||
|
tree.loadXML("xml.asp?id=0");
|
||
|
</script>
|
||
|
</XMP>
|
||
|
<script>
|
||
|
tree=new dhtmlXTreeObject("treeboxbox_tree","100%","100%",0);
|
||
|
tree.setImagePath("../imgs/");
|
||
|
tree.setXMLAutoLoading("xml.php");
|
||
|
tree.loadXML("xml.php?id=0");
|
||
|
|
||
|
</script>
|
||
|
<br><br>
|
||
|
|
||
|
</body>
|
||
|
</html>
|