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)
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.