リモートデータソースでKendoUIグリッドを使用しようとしていますが、グリッドのデータソースのjson文字列を返すASP.Net aspxページにページサイズ、フィルター、および並べ替えパラメーターを渡す方法を理解できません。TelerikのKendoUIに関するドキュメントは、KendoUIでサーバー側テクノロジを使用する例がないため悪いものです。誰かがこれを知っているなら、私に知らせてください?
$(document).ready(function () {
$("#grid").kendoGrid({
dataSource: {
type: "json",
transport: {
read: "GetProducts.aspx"
},
schema: {
model: {
fields: {
ProductId: { type: "number" },
ProductName: { type: "string" },
CategoryName: { type: "string" },
IncludeProduct : { type: "boolean" }
}
}
},
pageSize: 10,
serverPaging: true,
serverFiltering: true,
serverSorting: true
},
GetProducts.aspxページで、ページ読み込みイベントでjson文字列を作成し、ブラウザーに送り返します。ASP.NetWebフォームを使用しています。