【php增删改查实例】第七节 - 部门管理模块(画一个datagrid表格)

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

<table id="grid0" title="部门管理" class="easyui-datagrid" fitColumns="true" pagination="true" rownumbers="true" url="query.php">

    <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属性,然后这个属性的值最好和数据库的那一张表的字段名保持一致!

猜你喜欢

转载自www.cnblogs.com/skyblue-li/p/9056141.html