美文网首页
jqGrid下载/使用

jqGrid下载/使用

作者: 小贱贱9395 | 来源:发表于2016-10-14 16:01 被阅读4819次
    介绍
    • Caption layer
    • Header layer
    • Body layer
    • Navigation layer


      如图所示
    下载

    1.在Download Builder官方页面下载jqGrid,可以选择自己需要的组件下载,获得一个定制的版本。
    2.在ThemeRoller官方页面下下载主题,获取jQuery UI主题文件。

    使用

    解压下载好的压缩包,在项目的根目录下建立相应的文件夹,将文件放入文件夹中,目录如图示:


    如图所示

    添加如下代码

        <link rel="stylesheet" href="jQueryUI/jquery-ui.min.css">
        <link rel="stylesheet" type="text/css" media="screen" href="jqGrid/css/ui.jqgrid.css" />
         
        <script src="jqGrid/js/jquery-1.11.0.min.js" type="text/javascript"></script>
        <script src="jqGrid/js/i18n/grid.locale-en.js" type="text/javascript"></script>
        <script src="jqGrid/js/jquery.jqGrid.min.js" type="text/javascript"></script>
    
    实例

    在数据库中建表,准备数据

    建表
    CREATE TABLE invheader (                                                     
      invid int(11) NOT NULL AUTO_INCREMENT,                                             
      invdate date NOT NULL,                                                          
      client_id int(11) NOT NULL,                                                     
      amount decimal(10,2) NOT NULL DEFAULT '0.00',                                   
      tax decimal(10,2) NOT NULL DEFAULT '0.00',                                      
      total decimal(10,2) NOT NULL DEFAULT '0.00',                                    
      note char(100) DEFAULT NULL,                                 
      PRIMARY KEY  (invid) 
    );
    

    测试数据dataupload,xls文件转为csv导入数据库。

    HTML文件
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>My First Grid</title>
     
    <link rel="stylesheet" type="text/css" media="screen" href="css/ui-lightness/jquery-ui-1.8.2.custom.css" />
    <link rel="stylesheet" type="text/css" media="screen" href="css/ui.jqgrid.css" />
     
    <style type="text/css">
    html, body {
        margin: 0;
        padding: 0;
        font-size: 75%;
    }
    </style>
     
    <script src="js/jquery-1.7.2.min.js" type="text/javascript"></script>
    <script src="js/i18n/grid.locale-en.js" type="text/javascript"></script>
    <script src="js/jquery.jqGrid.min.js" type="text/javascript"></script>
     
    <script type="text/javascript">
    $(function () {
        $("#list").jqGrid({
            url: "example.php",
            datatype: "xml",
            mtype: "GET",
            colNames: ["Inv No", "Date", "Amount", "Tax", "Total", "Notes"],
            colModel: [
                { name: "invid", width: 55 },
                { name: "invdate", width: 90 },
                { name: "amount", width: 80, align: "right" },
                { name: "tax", width: 80, align: "right" },
                { name: "total", width: 80, align: "right" },
                { name: "note", width: 150, sortable: false }
            ],
            pager: "#pager",
            rowNum: 10,
            rowList: [10, 20, 30],
            sortname: "invid",
            sortorder: "desc",
            viewrecords: true,
            gridview: true,
            autoencode: true,
            caption: "My first grid"
        }); 
    }); 
    </script>
     
    </head>
    <body>
        <table id="list"><tr><td></td></tr></table> 
        <div id="pager"></div> 
    </body>
    </html>
    
    Property Description
    url 服务端地址
    datatppe 返回的数据格式xml或者json
    mtype 请求方法GET或者POST
    colNames 表格中的列名
    colModel 定义每列的属性
    pager 表格的导航条
    rowNum 行数
    rowList 导航条的显示数据的条数
    sortname 根据哪个字段进行排序
    viewrecords 在导航条显示数据条数
    caption 表格名称
    PHP文件
    <?php
    //include the information needed for the connection to MySQL data base server.
    // we store here username, database and password
    
    // to the url parameter are added 4 parameters as described in colModel
    // we should get these parameters to construct the needed query
    // Since we specify in the options of the grid that we will use a GET method
    // we should use the appropriate command to obtain the parameters.
    // In our case this is $_GET. If we specify that we want to use post
    // we should use $_POST. Maybe the better way is to use $_REQUEST, which
    // contain both the GET and POST variables. For more information refer to php documentation.
    // Get the requested page. By default grid sets this to 1.
    $page = $_GET['page'];
    
    // get how many rows we want to have into the grid - rowNum parameter in the grid
    $limit = $_GET['rows'];
    
    // get index row - i.e. user click to sort. At first time sortname parameter -
    // after that the index from colModel
    $sidx = $_GET['sidx'];
    
    // sorting order - at first time sortorder
    $sord = $_GET['sord'];
    
    // if we not pass at first time index use the first column for the index or what you want
    if(!$sidx) $sidx =1;
    
    // connect to the MySQL database server
    $db = mysql_connect('127.0.0.1', 'root', '') or die("Connection Error: " . mysql_error());
    
    // select the database
    mysql_select_db('test') or die("Error connecting to db.");
    
    // calculate the number of rows for the query. We need this for paging the result
    $result = mysql_query("SELECT COUNT(*) AS count FROM invheader");
    $row = mysql_fetch_array($result,MYSQL_ASSOC);
    $count = $row['count'];
    
    // calculate the total pages for the query
    if( $count > 0 && $limit > 0) {
        $total_pages = ceil($count/$limit);
    } else {
        $total_pages = 0;
    }
    
    // if for some reasons the requested page is greater than the total
    // set the requested page to total page
    if ($page > $total_pages) $page=$total_pages;
    
    // calculate the starting position of the rows
    $start = $limit*$page - $limit;
    
    // if for some reasons start position is negative set it to 0
    // typical case is that the user type 0 for the requested page
    if($start <0) $start = 0;
    
    // the actual query for the grid data
    $SQL = "SELECT invid, invdate, amount, tax,total, note FROM invheader ORDER BY $sidx $sord LIMIT $start , $limit";
    $result = mysql_query( $SQL ) or die("Couldn't execute query.".mysql_error());
    
    // we should set the appropriate header information. Do not forget this.
    header("Content-type: text/xml; charset=utf-8");
    
    $s = "<?xml version='1.0' encoding='utf-8'?>";
    $s .= "<rows>";
    $s .= "<page>".$page."</page>";
    $s .= "<total>".$total_pages."</total>";
    $s .= "<records>".$count."</records>";
    
    // be sure to put text data in CDATA
    while($row = mysql_fetch_array($result,MYSQL_ASSOC)) {
        $s .= "<row id='". $row['invid']."'>";
        $s .= "<cell>". $row['invid']."</cell>";
        $s .= "<cell>". $row['invdate']."</cell>";
        $s .= "<cell>". $row['amount']."</cell>";
        $s .= "<cell>". $row['tax']."</cell>";
        $s .= "<cell>". $row['total']."</cell>";
        $s .= "<cell><![CDATA[". $row['note']."]]></cell>";
        $s .= "</row>";
    }
    $s .= "</rows>";
    
    echo $s;
    ?>
    

    效果如图


    My First Grid

    友情提示:关闭php的display errors选项,否则会因为数据库的问题报错。

    相关文章

      网友评论

          本文标题:jqGrid下载/使用

          本文链接:https://www.haomeiwen.com/subject/aelwyttx.html