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