分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 网页技术

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

发布时间:2023-09-06 01:54责任编辑:董明明关键词:暂无标签

在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表格)

原文地址:https://www.cnblogs.com/skyblue-li/p/9056141.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved