2013-06-24 171 views
3

嗨如何讓選擇頁碼我非常新劍道UI,讓需要幫助的在下面的修復,劍道電網

我使用的劍道格UI如下的分頁: <script> $(document).ready(function(){ $("#table3").kendoGrid({ dataSource: { pageSize: 10}, pageable: true, enter code here高度:300, sortable: true, }); $("#table3").show(); }); </script>

當用戶在一個頁面編輯記錄

,他重定向與記錄的詳細信息編輯頁面,所以我需要當前的頁碼,因爲在一個頁面編輯一條記錄後,我需要用戶重定向到保存該記錄的詳細信息後,保存同一頁面。 我正在Coldfusion頁面中使用它。 請幫忙。

在此先感謝

回答

6

你所追求的是在這裏:

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具有內聯批量編輯和彈出編輯功能,如果您移動到其他頁面,它會變得更復雜一點。

FYI:http://demos.kendoui.com/web/grid/editing.html

+0

非常感謝你的幫助。是的,我實現了彈出一個kendo UI,謝謝。 – Rajni

-1
// 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   
+0

請詳細解釋您的答案,請參閱[如何編寫好的答案?](http://stackoverflow.com/help/how-to-answer) – agold