日期:2014-05-17 浏览次数:20681 次
<script type="text/javascript">
$('#lizhitree').treegrid({
nowrap : false,
rownumbers : true,
collapsible : false,
URL:'treegrid_data_lizhi2.json',
idField : 'id',
treeField : 'name',
columns:[[
{
title : '名字',
field : 'name',
width : 220
},{
title : '大小',
field : 'size',
width : 100
},{
title : '日期',
field :'date',
width : 150
}
]]
});
</script>
<table id="lizhitree" title="Folder Browser" class="easyui-treegrid" style="width:700px;height:250px">
<thead>
<tr>
<th>名字</th>
<th>大小</th>
<th>日期</th>
</tr>
</thead>
</table>