Action中得到的List<Map<String,Object>>类,Object中有单位和人员属性。要将其返回前台树形表中,使用了dtree
本帖最后由 jul324 于 2013-10-16 15:12:33 编辑 Action从后台数据库中返回List<Map<String,Object>>类,Object中有Company和User属性。要将其返回前台树形表中,使用了dtree。其中Company属性做为第一级,属于相同Company的User做为树形结构的第二级。跪求如何实现!思路就好。下面是dtree中的给出的示例。小白,刚学习,谢谢了。
dtree?js? javascript dtree
<script type="text/javascript">
<!--
d = new dTree('d');
d.add(0,-1,'My example tree');
d.add(1,0,'Node 1','example01.html');
d.add(2,0,'Node 2','example01.html');
d.add(3,1,'Node 1.1','example01.html');
d.add(4,0,'Node 3','example01.html');
d.add(5,3,'Node 1.1.1','example01.html');
d.add(6,5,'Node 1.1.1.1','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>