Unplanned
Last Updated: 30 Nov 2020 10:33 by Chris
Jerry
Created on: 21 Feb 2020 14:12
Category: Grid
Type: Feature Request
3
Grid method to go to a specific page

Can you add a method to go to a specific page in the Grid?

It is easy in Kendo UI for jQuery, https://docs.telerik.com/kendo-ui/api/javascript/data/datasource/methods/page

 dataSource.page(2);

The equivalent way of doing it in Kendo UI for Angular is to bind skip to a Grid, and calculate the skip by ourselves, but it doesn't feel as natural as doing datasource.page(2)

1 comment
Chris
Posted on: 30 Nov 2020 10:33

It would be useful to easily move to the first, last, or a specific page of the grid.

It would also help if the gird would automatically go to the previous page if all data is removed from the current page, for example by carrying out actions on the items that remove them from the array bound to kendoGridBinding.