26. marts 2005 - 14:32
#2
Jeg sidder med en tree menu, hvor jeg skal hente data fra databasen
<script type="text/javascript">
<!--
d = new dTree('d');
<% Set rs = Conn.Execute("select * from Sider where RID = 0 AND sprog LIKE '%" & SetAdminLaguage & "%' order by placering,sortering,titel")
%>
d.add(0,-1,'Dokumenter');
d.add(100,0,'Venstre menu','example01.html');
d.add(200,0,'Top menu','example01.html');
d.add(300,0,'Bund menu','example01.html');
d.add(-30,0,'Top menu','LINK','Top menu','TARGET','images/tree/folder.gif','images/tree/folderOpen.gif');
d.add(1,1,'Niveau 1','example01.html');
d.add(16,1,'Side 2','example01.html');
d.add(3,1,'Niveau 2','example01.html');
d.add(5,3,'Niveau 3','example01.html');
d.add(6,5,'Side 1','example01.html');
d.add(2,0,'Node 2','example01.html');
d.add(4,0,'Node 3','example01.html');
d.add(7,0,'Node 4','example01.html');
d.add(8,1,'Node 1.2','example01.html');
d.add(9,0,'My Pictures','example01.html','Pictures I\'ve taken over the years','','','img/imgfolder.gif');
d.add(10,9,'The trip to Iceland','example01.html','Pictures of Gullfoss and Geysir');
d.add(11,9,'Mom\'s birthday','example01.html');
d.add(12,0,'Recycle Bin','example01.html','','','img/trash.gif');
document.write(d);
//-->
</script>