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

Posted 分享创造快乐,技术成就梦想

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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属性,然后这个属性的值最好和数据库的那一张表的字段名保持一致!

以上是关于php增删改查实例第七节 - 部门管理模块(画一个datagrid表格)的主要内容,如果未能解决你的问题,请参考以下文章

php增删改查实例第四节 -自己 DIY 一个数据库管理工具

php增删改查实例第二十节 - 把用户管理页面集成到main.php中

php增删改查实例第一节 - PHP开发环境配置

php增删改查实例第五节 - easyUI的基本使用

php增删改查实例第十六节 - 用户新增

php增删改查实例第二十三节 - PHP文件上传