可能重复:
Kendo UI 网格始终从第 0 页开始
设置一个 Kendo UI 网格,其中大部分工作正常,但在页面加载时,可分页数据未正确加载。(将每页项目更改为 10 后加载正确,使用右下角按钮刷新后再次加载不正确)
我的代码:
<div id="example" class="k-content">
<div id="clientsDb">
<div id="grid"></div>
</div>
<script>
$(document).ready(function() {
$("#grid").kendoGrid({
dataSource: {
transport: {
read: "data/weight.php"
},
schema: {
data: "data",
},
pageSize: 5
}, height: 250,
scrollable: true,
sortable: true,
filterable: true,
pageable: {
refresh: true,
pageSizes: true
},
groupable: true,
selectable: true,
columns: [ {
field: "w_user",
width: 50,
title: "User"
} , {
field: "w_weight",
width: 70,
title: "Weight"
}, {
field: "w_stamp",
title: "Stamp",
width: 160,
template: '#= kendo.toString(w_stamp,"dd MMMM yyyy") #'
}, {
field: "w_comment",
title: "Comments"
}
]
});
});
</script>
</div>
第一个屏幕(不正确): http: //www.informatiebron.nl/images/scr1.png
第二个屏幕(正确): http: //www.informatiebron.nl/images/scr2_correct.png
有人有解决这个问题的想法吗?
https://stackoverflow.com/a/14255509/2039657 有解决方案/解决方法。谢谢你的建议。就我而言,我需要该功能才能使其再次工作。