我有网格
` $("#grid").kendoGrid({
dataSource: {
type: "json",
schema: {
data: function() {
return gridData.data;
},
total: function() {
return gridData.total;
},
model: {
fields: {
//fields
}
}
},
//pageSize: 10,
serverPaging: true,
//serverFiltering: false
},
height: 700,
filterable: {
mode: "row"
},
pageable: {
pageSize: 10,
change: function(e) {// how to call typescript function here and pass page number
alert("page change called" + e.sender.dataSource.page());
}
},`
<div id="grid"></div>
这在客户端分页上工作正常,但我无法执行服务器端分页。
组件具有函数loadData(),我想调用该函数并将其传递给页码,但是我找不到从javascript调用打字稿功能的任何方法。
如何解决?