下载了jquery-easyui-1.2.5
直接在文件夹里打开demo里的html文件treegrid3.html,表格里可以显示数据
把整个文件夹jquery-easyui-1.2.5 放在一个新建的web项目里,不管是发布到IIS还是直接在VS里右键 在浏览器中查看,treegrid3.html 页面的表格里就是没有数据
估计是:url="treegrid_data3.json" 这个地方有问题,没得到解决,请高人指点,谢谢!!!
<table id="tt" title="TreeGrid" class="easyui-treegrid" style="width:700px;height:300px"
url="treegrid_data3.json" idField="id" treeField="code"
pagination="true" fitColumns="true">
<thead>
<tr>
<th field="code" rowspan="2" width="150" editor="text">Code</th>
<th colspan="2">Group Fields</th>
</tr>
<tr>
<th field="name" width="200" editor="text">Name</th>
<th field="addr" width="200" editor="text">Addr</th>
</tr>
</thead>
</table>