This question was asked 8 years ago, however the Kendo UI grid has evolved and now supports Angular. The answers for the original question dont work for the Kendo Grid Angular.
I have a kendo grid where I hide the pagination controls if there is less than one page of data.
template: `<kendo-grid #kendoGrid [kendoGridBinding]="gridView"
[pageSize]="pageSize" [pageable]="showPaginator()"
where
showPaginator(): boolean {
return this.gridView?.length > this.pageSize;
}
If there is just one item on the second page and I remove that item, the grid shows the second page with no items but hides the pagination controls. I would like to either select the first row of the grid, or select the first page of the grid but can't find the api calls to do that.