This is a migrated thread and some comments may be shown as answers.

Page navigation on the top of the grid

1 Answer 142 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Stefan
Top achievements
Rank 1
Stefan asked on 27 Jun 2012, 06:50 PM
Hello everybody,

is there a way to put the footer of the grid (the page navigation) on the tip of the grid

like:


PAGE NAVIGATION
--------
Drag here to Group
--------
Column Names
------
Content

??

Greetings 
Stefan

1 Answer, 1 is accepted

Sort by
0
Accepted
Trent Jones
Top achievements
Rank 1
answered on 27 Jun 2012, 08:19 PM
I haven't seen a way to move it but another tech helped me with adding an additional to the top.

where #some-list is already a kendoGrid.

$(function () {
                      var pager = $("#some-list").prepend("<div id='topPager' class='k-pager-wrap k-grid-pager'></div>");
                      pager = $("#extraPager").kendoPager({
                          dataSource: $("#some-list").data("kendoGrid").dataSource
                      });
                  });
Tags
Grid
Asked by
Stefan
Top achievements
Rank 1
Answers by
Trent Jones
Top achievements
Rank 1
Share this question
or