我有一个剑道网格,我预先选择了一个可以在任何页面上的项目。在许多情况下,我的默认选定项目不在第一页(通常是您看到的第一页),因此隐藏了所选项目。我需要获取数据项的页码。我怎样才能做到这一点?还有一个我还没有见过kendo的功能吗?
答案 0 :(得分:0)
据我记忆,你可以这样做:
var index = dataSource.indexOf(item) + 1; // find where item is in data source
var pageSize = dataSource.pageSize(); // find how many items per page
var currentPage = Math.ceil(index/pageSize); // find at which page item is
dataSource.query({ page: currentPage, pageSize: dataSource.pageSize() }); // go to that page