私は剣道UIグリッドhttp: //demos.kendoui.com/web/grid/index.htmlに取り組んでおり、一度に5つのレコードのみを表示し、ページネーションを通じて他のレコードも表示したいので、このコードを使用します
$(document).ready(function() {
$("#grid").kendoGrid({
dataSource: {
data: createRandomData(50),
pageSize: 5
},
groupable: true,
sortable: true,
pageable: {
refresh: true,
pageSizes: true
},
columns: [ {
field: "FirstName",
attributes:{"class": "table-cell"}
} , {
field: "LastName",
attributes:{"class": "table-cell"}
} , {
field: "City",
attributes:{"class": "table-cell"}
} , {
field: "Title",
attributes:{"class": "table-cell"}
} , {
field: "BirthDate",
template: '#= kendo.toString(BirthDate,"dd MMMM yyyy") #',
attributes:{"class": "table-cell"}
} , {
field: "Age",
attributes:{"class": "table-cell"}
}
]
});
});
</script>
行番号9のpageableはページネーションを有効にしますが、それはフッターバーのすべてのものを有効にします.私はすべてを必要としません.次と前のボタンが互いに隣接しているだけです:) また、すべてのドキュメントを読みましたhttp://docs.kendoui.com /getting-started/using-kendo-with/aspnet-mvc/helpers/grid/configurationしかし、解決策が見つからなかったか、見逃した可能性があります。