如何在剑道pageSize
grid
中设置dataSoure
。我尝试了以下代码,但它无法正常工作。
grid.dataSource.data(result).dataSource.pageSize(5);
function loadCentres(e) {
arrCentreId = new Array();
arrCentreIdRemove = new Array();
$.ajax({
type: 'GET',
url: '@Url.Action("GetCentres", "AAMaintenance")',
dataType: 'json',
data: { examinerId: hdnexaminerId },
success: function (result) {
var grid = $("#Centres").data("kendoGrid");
grid.dataSource.data(result).dataSource.pageSize(5);
}
});
}
答案 0 :(得分:2)
你做的一切都很好。但是,您缺少一行代码:
grid.refresh();
这样,网格将使用新的DataSource
配置