如何在kendo网格中获取所选页码

时间:2013-06-24 07:30:48

标签: kendo-ui kendo-grid

嗨,我对kendo UI非常陌生,所以在下面的修复中需要帮助,

我正在使用kendo grid UI进行分页: <script> $(document).ready(function(){ $("#table3").kendoGrid({ dataSource: { pageSize: 10 }, pageable: true, enter code here身高:300, sortable: true, }); $("#table3").show(); }); </script>

当用户在页面中编辑记录时,他被重定向到具有该记录详细信息的编辑页面,因此我需要当前页码,因为在编辑页面中的记录后,我需要在保存详细信息后将用户重定向到同一页面那条记录。 我在coldfusion页面中使用它。 请帮忙。

提前致谢

2 个答案:

答案 0 :(得分:8)

你在追求的是:

http://docs.kendoui.com/api/web/pager#methods-page

 // get the page
 var currentPage = grid.dataSource.page();

 // later set the page
 grid.dataSource.page(currentPage );

但是我对从网格重定向到编辑页面感到困惑,你为什么这样做? Kendo具有内联批量编辑和弹出编辑功能,如果您移动到其他页面,它将变得更加复杂。

仅供参考:http://demos.kendoui.com/web/grid/editing.html

答案 1 :(得分:3)

// declare page index as 1
    var currentPage = 1;

    pageable: {
    change: function (e) {  
    currentPage = e.index;
    },
    page: currentPage,
    sortable: true,
    ..`enter code here`
    }

    $scope.grid = dataSource;
    $scope.grid._page = currentPage;// stay in the current page after grid refreshes