如何在剑道网格的总属性中分配行数?我用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 ....
从我在你的代码中看到的,
total
函数应该是:
total: function (response) {
return response.list.length;
}
您从 PHP 返回的是一个 JSON 对象,其中在名为
array
的字段中包含 list
,这是一个 JSON 对象(在 KendoUI 中total
)。因此,对数组的引用是 response.list
,长度是 response.list.length
。