我正在研究剑道 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但我没有找到解决方案,或者我可能错过了。