I have a kendo-grid with pageable set to true and can navigate to page 2. This all works fine. (see below)
If I then reload the grid data with new data, the view is still on page 2. How do I force a reset so the grid goes back to page 1?
<kendo-grid
[kendoGridBinding]="gridItems"
[navigable]="true"
[isDetailExpanded]="expandDetail"
(detailExpand)="onDetailExpand($event)"
[selectable]="{enabled: false}"
[kendoGridSelectBy]="false"
(cellClick)="onRowClicked($event)"
[scrollable]="true"
[pageable]="true"
[pageSize]="100"
[hideHeader]="true"
[columnMenu]="false"
class="section-l-grid"
#secondGrid