ここでも、列ヘッダーをクリックして並べ替えるまでページングは機能しません。その後、ページングは正常に機能しているようです。
<script type="text/javascript">
$(document).ready(function () {
$('#reportContainer').load('Reports/Scaffold.html', function () {
var dataSource = new kendo.data.DataSource({
transport: {
read: {
type: "POST",
url: Reports.ServiceURL.MyService,
dataType: "JSON",
contentType: "application/json",
data: { myParam: "1" },
serverPaging: true,
serverSorting: true
},
parameterMap: function (data, operation) {
return kendo.stringify(data);
}
},
batch: true,
pageSize: 50,
schema: {
data: "d"
}
});
$("#allGrids").kendoGrid({
dataSource: dataSource,
sortable: true,
pageable: true,
filterable: false,
height: 400,
columns: myModel
});
});
});
</script>