2
設定方法剣道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);
}
});
}