重複の可能性:
剣道 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
2 番目の画面 (正しい): http://www.informatiebron.nl/images/scr2_correct.png
これを解決するアイデアはありますか?
https://stackoverflow.com/a/14255509/2039657 には解決策/回避策がありました。その提案をありがとう。私の場合、再び機能させるには関数が必要でした。