码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-05-18 15:33:51      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:alt   列表   例子   column   css   1.3   连接   har   asc   

1. 列表组件 datagrid

1.1 创建一个grid.html

技术分享图片

<html>
    
    <head>
        <meta charset="utf-8" />
        
    
    </head>
    
    <body>
    
    </body>


</html>

1.2 引入easyUI的资源文件

<script type="text/javascript" src="jquery-easyui-1.3.3/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery-easyui-1.3.3/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="jquery-easyui-1.3.3/themes/icon.css">
<script type="text/javascript" src="jquery-easyui-1.3.3/jquery.easyui.min.js"></script>
<script type="text/javascript" src="jquery-easyui-1.3.3/locale/easyui-lang-zh_CN.js"></script>
<script type="text/javascript" src="jquery-easyui-1.3.3/validate.js"></script>

1.3 绘制表格组件

Html:

<table id=‘grid0‘ title="部门管理01"  class="easyui-datagrid" 
fitColumn="true" pagination="true" 
rownumbers="true" url="xxx.php" fit="false" toolbar="#toolbar">

 </table>

效果:
技术分享图片
技术分享图片

技术分享图片

1.1 编写后台程序,查询部门数据

在当前文件夹,新建一个dept.php

技术分享图片

进行数据库连接测试
技术分享图片

查询部门表数据,json格式返回:
技术分享图片

1.5 分页查询

如果我们想要做分页,就需要给datagrid传递两个参数,分别为total和rows,total代表这个表的查询总数,rows代表分页后查出来的数据。

分页规律:
技术分享图片

现在,首先考虑如何在php文件中获取第几页和每页多少条?
在datagrid组件中,只要你设置了分页,就会给后台传递page和rows,分别对应第几页和每页多少条。

代码:

//查询部门表中的数据
    
    $resultset = mysql_query("select * from tm_dept where 1=1 limit $start,$rows") or die(mysql_error());
    
    
    
    $list = array();
    $count = 0;
    
    while($row = mysql_fetch_array($resultset)){
        
        $list[$count++] = $row;
    }
    
    
    $data = array();
    
    $data["rows"] = $list;
    
    
    $resultset = mysql_query("select count(*) as total from tm_dept") or die(mysql_error());
    
    while($row = mysql_fetch_array($resultset)){
        
        $data["total"] = $row["total"];
    }
    
    
    echo json_encode($data);

2. 按钮组件 linkbutton

渲染按钮的方法,给一个a标签加上class为easyui-linkbutton 即可。

例子:

<a href="javascript:openUserAddPage()" class="easyui-linkbutton" iconCls="icon-add" plain="true">新增用户</a>

技术分享图片

3.右下角弹窗组件 $.messager

技术分享图片

下载地址:https://pan.baidu.com/s/1OXvqQwAmz7usgD4KqiUXLw

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

标签:alt   列表   例子   column   css   1.3   连接   har   asc   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!