在easyui中,datagrid组件需要用一个table标签去渲染。

<table >

	<thead>
    
    	<tr>
        
        	<th field="cb" checkbox="true" align="center"></th>
            <th field="id" width="30"  align="center">ID</th> 
        	<th field="deptid" width="80"  align="center">部门编号</th>
            <th field="deptname" width="120"  align="center">部门名称</th>
            <th field="createtime" width="180"  align="center">创建时间</th>
            <th field="updatetime" width="180"  align="center">最后更新时间</th>

        </tr>
    </thead>

</table>

PS: 在easyui的表格组件中,我们唯一要关心的就是
1.提交到什么地址: url
2.显示哪些字段。

  <th field="id" width="30"  align="center">ID</th> 

比如,ID字段,你需要在th中设置一个field属性,然后这个属性的值最好和数据库的那一张表的字段名保持一致!

相关文章:

  • 2021-09-28
  • 2021-07-04
  • 2021-10-28
  • 2022-12-23
  • 2022-01-17
  • 2021-11-14
  • 2021-12-30
  • 2021-09-16
猜你喜欢
  • 2021-10-15
  • 2022-03-10
  • 2022-02-06
  • 2022-03-05
  • 2021-07-08
  • 2021-07-05
  • 2021-08-27
相关资源
相似解决方案