3

我有一个如下所述的 jqGrid:

用户列表.aspx

<div id="users" class="grid-right">
    <h3>Users</h3>
    <table id="client-group-users-list"></table>
    <div id="client-group-users-list-pager"></div>
</div>

用户列表组.js

function createUsersGrid(getUsersForClientGroupUrl) {
    $('#client-group-users-list').jqGrid({
        height: "auto",
        width: "590",
        url: getUsersForClientGroupUrl + "?random=" + Math.random(),
        rowNum: 10,
        mtype: 'POST',
        viewrecords: true,
        postData: { clientGroup: getClientGroupId(), active: true },
        datatype: 'json',
        colNames: ['ClientGroupID', 'Login', 'Role'],
        //pgbuttons: false,
        //pgtext: null,
        //viewrecords: false,
        gridview: true,
        colModel: [
            { name: 'ClientGroupID', index: 'ClientGroupID', hidden: true },
            { name: 'Login', index: 'Login', search: false, width: 130, sorttype: "string" },
            { name: 'Role', index: 'Role', search: false, width: 100 }
        ],
        caption: "Users for client group: " + getClientGroupName(),
        pager: '#client-group-users-list-pager',
        ondblClickRow: function (userId) {
            editUser(userId);
        },
        sortname: 'Login',
        sortorder: 'asc',
        loadui: 'enable',
        loadError: function (xhr, status) {
            location.reload();
        }           
    })
    .jqGrid('navGrid', '#client-group-users-list-pager',
        { add: false, del: false, edit: false, search: false, view: false })
}

在此处输入图像描述

列上的排序Login不起作用。但是,如果我把loadonce:true它开始工作,但记录的总数没有反映,分页功能停止工作。

任何人都可以帮助我处理与datatype: 'json'.

谢谢和问候, 桑托什·库马尔·帕特罗

4

3 回答 3

6

您似乎对 jqGrid 如何与服务器交互有典型的理解问题。

如果您datatype: 'json' 不使用loadonce: true选项,则服务器负责对数据进行排序、分页和可选的搜索/过滤。在这种情况下,对服务器的每个请求都包含重要的输入参数,默认值为:pagerows和。还有其他参数,还有其他一些,但在您的情况下并不那么重要。所以在第一次加载网格内容时,jqGrid 发布到 URL 之类的东西sidxsord_searchndgetUsersForClientGroupUrl

page=1&rows=10&sidx=Login&sord=asc

和参数的值对应于您使用的rows和选项的值。服务器应提供请求的数据页(第 1 页数据,页大小为 10 行)。可以使用网格选项重命名、和参数。sidxsordrowNumsortnamesortorderprmNamespagerowssidxsord

重要的是要了解,当用户单击“下一页”/上一页“按钮或用户单击列标题以更改排序时,jqGrid向服务器发出新请求,服务器应提供数据页面根据输入参数。

另一方面,如果您使用loadonce: true选项,则服务器应返回所有数据(所有页面)。加载的数据应该只是排序对应于sidxsord选项。加载数据后jqGriddatatype"json"变为"local"。所有下一个排序、分页和过滤(参见filterToolbar方法)或排序(参见此处此处)将由 jqGrid 在内部(在客户端)实现。

如果您需要从服务器重新加载数据,您应该将值重置datatype"json"(参见答案)。通常在 的beforeRefresh回调中执行此操作navGrid。因此,如果用户单击导航栏的“刷新”按钮,将从服务器重新加载网格。

我想你只是没有改变你的服务器代码,当你使用选项时服务器仍然返回一页数据。loadonce: true这是错的。不要忘记在服务器上对初始数据进行排序。

您发布的代码中的一些常见问题。我建议您从 URL 中删除"?random=" + Math.random()部分内容,因为它没有任何意义。这种方法通常用于防止在使用情况下缓存服务器响应mtype: "GET"(HTTP GET 动词)。你用mtype: 'POST'. 所以响应根本不会改变。此外,如果您将使用mtype: "GET"jqGrid 附加 URL 和nd参数,这些参数与您的参数具有相同的作用random。最好的方法是将Cache-Control服务器响应的 HTTP 标头设置为并使用jqGrid 选项private, max-age=0删除。有关缓存的更多信息,请参阅答案另一个ndprmNames: { nd: null }

另一个问题:你应该明白你只能调用一次createUsersGrid函数。之后,with将被修改。下一次调用函数将什么也不做。如果只能调用一次,则应考虑是否需要将 JavaScript 片段放入函数中。或者,可以使用方法在下次使用之前销毁所有现有的 jqGrid 结构。<table>id="client-group-users-list"createUsersGridGridUnload

如果您想要clientGroup: getClientGroupId()将发送到服务器的参数是

于 2013-05-10T12:47:26.663 回答
0

我有一个类似的问题。对我来说,这是服务器代码。我只返回第一页。

rows = model.Select(x => new { x.POID,  
                                         x.HA1.HA1,   
                                         x.PONumber,
                                           status = x.POStatu.Name,
                                         vendor=x.Vendor.Name,  
                                         x.POCreatedDate,
                                         x.POSenttoVendor 
                                       }  
                             ).ToArray().ToPagedList(pageIndex,pageSize).

所以,我删除了 .ToPagedList(pageIndex,pageSize)

于 2014-03-14T01:10:36.377 回答
0

只是用一个例子来完成。

大家好,我遇到了同样的问题,但我看不到任何例子。所以,我解决了我的问题,我会给你一个例子。

我有一个名为“estado”的表(id、nome、sigla、codigo_ibge)。我实现了 jqGrid Guriddo Responsive 来进行所有的 CRUD 操作。

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />

    <!-- We support more than 40 localizations -->
    <script type="text/ecmascript" src="../../resources/jqGrid/js/i18n/grid.locale-pt-br.js"></script>

    <!-- This is the Javascript file of jqGrid -->   
    <script type="text/ecmascript" src="../../resources/jqGrid/js/jquery.jqGrid.min.js"></script>

    <!-- A link to a Boostrap  and jqGrid Bootstrap CSS siles-->
    <link rel="stylesheet" type="text/css" media="screen" href="../../resources/jqGrid/css/ui.jqgrid-bootstrap.css" />

    <style type="text/css">  
        .ui-jqgrid .ui-jqgrid-bdiv {
              position: relative; 
              margin: 0em; 
              padding:0; 
              /*overflow: auto;*/ 
              overflow-x:hidden; 
              overflow-y:auto; 
              text-align:left;
          } 
         .customelement .radio-inline input {
             margin-left: -40px;
             padding-right: 10px; 
         }
         .typeahead {
             z-index: 10051;
         }
    </style>

    <script type="text/javascript">
        $.jgrid.defaults.width = 850;
        $.jgrid.defaults.responsive = true;
        $.jgrid.defaults.styleUI = 'Bootstrap';
        $.jgrid.styleUI.Bootstrap.base.rowTable = "table table-bordered table-striped";
        $(document).ready(function () {

            $("#jqGrid").jqGrid({
                url: '../ctrl_gerenciamento/gerenciaEstadoJqGridLoad.php',
                editurl: '../ctrl_gerenciamento/gerenciaEstadoJqGridEdit.php',
                datatype: "json",
                mtype: "GET",
                page: 1,
                jsonReader: {
                    page: "obj.currpage",
                    total: "obj.totalpages",
                    records: "obj.totalrecords",
                    repeatitems: false,
                    root: "obj.rows",
                    cell: "cell",
                    id: "0"
                },
                colModel: [
                    {
                        label: 'ID',
                        name: 'id',
                        width: 20,
                        key: true,
                        editable: false
                    },
                    {
                        label: 'Nome',
                        name: 'nome',
                        width: 145,
                        editable: true,
                        editrules : { required: true },
                        search: true,
                        stype: 'text'
                    },
                    {
                        label: 'Sigla',
                        name: 'sigla',
                        width: 35,
                        editable: true,
                        editrules : { required: true },
                        search: true,
                        stype: 'text'
                    },
                    {
                        label: 'Código IBGE',
                        name: 'codigo_ibge',
                        width: 60,
                        editable: true,
                        editrules : { required: true },
                        search: true,
                        stype: 'text'
                    }
                ],
                sortname: 'nome',
                sortorder : 'asc',
                loadonce: false,
                viewrecords: true,
                width: 785,
                height: 370,
                rowNum: 10,
                pager: "#jqGridPager"
            });

            $('#jqGrid').jqGrid('filterToolbar', {defaultSearch:'cn'});

            $('#jqGrid').jqGrid('navGrid',"#jqGridPager", 
                { 
                    edit: true, 
                    add: true, 
                    del: true, 
                    search: false, 
                    refresh: false, 
                    view: false, 
                    position: "left"
                },
                {
                    editCaption: "Editar",
                    width: "500",
                    height: "auto",
                    top: "120",
                    left: "500",
                    recreateForm: true,
                    closeAfterEdit: true,
                    errorTextFormat: function (data) {
                        return 'Error: ' + data.responseText
                    }
                },
                {
                    editCaption: "Adicionar",
                    width: "500",
                    height: "auto",
                    top: "120",
                    left: "500",
                    closeAfterAdd: true,
                    recreateForm: true,
                    errorTextFormat: function (data) {
                        return 'Error: ' + data.responseText
                    }
                },
                {
                    editCaption: "Apagar",
                    width: "500",
                    height: "auto",
                    top: "120",
                    left: "500",
                    errorTextFormat: function (data) {
                        return 'Error: ' + data.responseText
                    }
                });
        });
    </script>
</head>
<body>
    <br />
    <h4> Gerenciamento de Estados </h4>
    <br />
    <div style="margin-left:10px">
        <table id="jqGrid"></table>
        <div id="jqGridPager"></div>
    </div>
</body>
</html>

从服务器加载控制器:

<?php
    header('Content-Type: application/json; charset=utf-8');
    include_once '../../classes/start.php';
    $json = new JSON();

    $page = $_GET['page'];
    $limit = $_GET['rows'];
    $sidx = $_GET['sidx'];
    $sord = $_GET['sord'];

    $_search = $_GET['_search'];
    $filtro = array();
    $filtro["nome"]         = isset($_GET["nome"]) ? $_GET["nome"] : null;
    $filtro["sigla"]        = isset($_GET["sigla"]) ? $_GET["sigla"] : null;
    $filtro["id"]           = isset($_GET["id"]) ? $_GET["id"] : null;
    $filtro["codigo_ibge"]  = isset($_GET["codigo_ibge"]) ? $_GET["codigo_ibge"] : null;

    try
    {
        if (!$sidx) $sidx = 1;

        $result = Estado::contarTodosRegistros();
        $qtdRegistros = $result[0]['count'];

        if ($qtdRegistros > 0 && $limit > 0) {
            $total_pages = ceil($qtdRegistros / $limit);
        } else {
            $total_pages = 0;
        }

        if ($page > $total_pages) $page = $total_pages;

        $start = $limit*$page - $limit;
        if ($start < 0) $start = 0;

        $result = null;
        $saida = null;

        if ($_search) {
            $result = Estado::consultarTodosRegistros($sidx, $sord, $start, $limit, $filtro);
        }else{
            $result = Estado::consultarTodosRegistros($sidx, $sord, $start, $limit);
        }
        $saida["rows"] = $result;
        $saida["totalrecords"] = "$qtdRegistros";
        $saida["currpage"] = "$page";
        $saida["totalpages"] = "$total_pages";

        $json->setStatus("ok");
        $json->setObjeto( $saida );
    }
    catch (Exception $ex)
    {
        $json->setStatus("erro");
        $json->setMensagem($ex->getMessage());
    }

    $json->imprimirJSON();

适用于搜索的方法:

public static function consultarTodosRegistros($sidx, $sord, $start, $limit, $filtro='')
    {
        $db = Database::conexao();
        $temp = 'where 1=1';
        if (!empty($filtro)){
            if (!empty($filtro["nome"])) {
                $temp .= " and estado.nome ilike '%". $filtro["nome"]."%'";
            }
            if (!empty($filtro["sigla"])) {
                $temp .= " and estado.sigla ilike '%". $filtro["sigla"]."%'";
            }
            if (!empty($filtro["id"])) {
                $temp .= " and estado.id = ". $filtro["id"];
            }
            if (!empty($filtro["codigo_ibge"])) {
                $temp .= " and estado.codigo_ibge ilike '%". $filtro["codigo_ibge"]."%'";
            }
        }
        $sql = "select *
                from updrs.estado
                $temp
                order by $sidx $sord
                limit $limit offset $start";

        $result = $db->query($sql);
        $result = $result->fetchAll(PDO::FETCH_ASSOC);
        return $result;
    }

编辑/添加/删除运算符

<?php
include_once '../../classes/start.php';

$operacao = $_POST["oper"];

$id = !empty($_POST['id']) ? $_POST['id'] : null;
$codigoIbge = isset($_POST["codigo_ibge"]) ? $_POST["codigo_ibge"] : null;
$sigla = isset($_POST["sigla"]) ? $_POST["sigla"] : null;
$nome = isset($_POST["nome"]) ? $_POST["nome"] : null;

if ($operacao == 'add')
{
    try
    {
        $idResult = Estado::insert($codigoIbge, $sigla, $nome);
        echo "registro atualizado: " . $idResult;
    }
    catch (Exception $e)
    {
        echo $e->getMessage();
    }
}

if ($operacao == 'edit')
{
    try
    {
        $count = Estado::update($codigoIbge, $sigla, $nome, $id);
        echo $count . " registro atualizado.";
    }
    catch (Exception $e)
    {
        echo "Erro: Dados informados são inválidos";
    }

}

if ($operacao == 'del')
{
    try
    {
        $count = Estado::delete($id);
        echo $count . " registro apagado.";
    }
    catch (Exception $e)
    {
        echo "Erro: Remoção do registro não permitida";
    }
}

我希望通过一个真实的例子有所帮助。享受。

于 2017-03-01T21:34:37.370 回答