Completed
Last Updated: 22 Oct 2020 05:49 by ADMIN
Release 2.19.0
Pablo
Created on: 26 Aug 2020 19:25
Category: Grid
Type: Bug Report
1
In WASM, when Navigable=true, clicking Previous Page from the Last page throws an error
1. Go to the last page

1. Click the Previous page button in the pager


<TelerikGrid Data="@MyData" Pageable="true" Navigable="true">
    <GridColumns>
        <GridColumn Field="ID"></GridColumn>
        <GridColumn Field="TheName" Title="Employee Name"></GridColumn>
    </GridColumns>
</TelerikGrid>

@code {
    public IEnumerable<object> MyData = Enumerable.Range(1, 50).Select(x => new { ID = x, TheName = "name " + x });
}
0 comments