我有一个 Web 服务,我从中获取从jqueryJSON
解析为使用的文本。$parseJSON
客户端可以通过加载从 Web 服务获取数据http://myserver/myfunction/{pagenumber}/{pagesize}
这将返回一个对象
{
total: <some int> //A number indicating the total number of records
rowsForPage: [......] //An array with just the rows for the requested page
}
如何将此端点用作 Kendo UI 网格的数据源,该网格将传递所选页面的页码和页面大小。
对于我的生活,我无法弄清楚这一点,但我认为这应该相对简单。