gpt4 book ai didi

kendo-ui - 如何在Kendo UI Grid中动态更改页面大小

转载 作者:行者123 更新时间:2023-12-03 13:08:34 25 4
gpt4 key购买 nike

我的Kendo UI网格显示了1000多个数据。我也有一个针对不同页面大小的下拉列表-15、25、50、100。在选择页面大小时,我们如何更改Kendo UI网格的页面大小?

最佳答案

您可以在组合框更改事件中设置页面大小。 (另请参见JSBin example。)

$("#comboBox").kendoComboBox({
dataTextField: "text",
dataValueField: "value",
dataSource: [
{ text: 1 },
{ text: 2 },
{ text: 3 },
{ text: 4 },
{ text: 5 }
],
change: function(e) {
var grid = $("#grid").data("kendoGrid");
grid.dataSource.pageSize(parseInt(this.value())); // this.value() being the value selected in Combo
}
});

关于kendo-ui - 如何在Kendo UI Grid中动态更改页面大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11330474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com