剑道网格分页不起作用

问题描述 投票:0回答:1

如何在剑道网格的总属性中分配行数?我用json来填充数据:

if ($result = mysqli_query($con,$sql)) {   
    while($obj = mysqli_fetch_object($result)) {
        $arr[] = $obj;
    }
}
echo "{\"list\":" .json_encode($arr). "}";      

但是分页不适用于 Total = Total 或 Function ! 我不知道我的网格问题出在哪里!!

$(document).ready(function () {
                var record = 0;
                var grid = $("#grid").kendoGrid({

                    dataSource: {
                        transport: {
                            read: {
                                url: "<?php echo $path?>/contractors.php?m=read&f=subcat",
                                dataType: "json"
                            }
                        },
                        schema: {
                            data: "list",
                            model: {
                                id: "id",
                                fields: {
                                    company: { type: "string" },
                                    firstname: { type: "string" },
                                    lastname: { type: "string" }

                                }
                            },
                            total: function (response) {
                                return $(response.data).length;
                            }

                        },
                        pageSize: 20,
                        serverPaging: true
                    },
                    pageable: true  ....
php pagination kendo-ui kendo-grid
1个回答
0
投票

从我在你的代码中看到的,

total
函数应该是:

total: function (response) {
    return response.list.length;
}

您从 PHP 返回的是一个 JSON 对象,其中在名为

array
的字段中包含
list
,这是一个 JSON 对象(在 KendoUI 中
total
)。因此,对数组的引用是
response.list
,长度是
response.list.length

© www.soinside.com 2019 - 2024. All rights reserved.