4 references to LastPageIndex
Microsoft.AspNetCore.Components.QuickGrid (4)
Pagination\PaginationState.cs (2)
68
if (CurrentPageIndex > 0 && CurrentPageIndex >
LastPageIndex
)
72
return SetCurrentPageIndexAsync(
LastPageIndex
.Value);
Pagination\Paginator.razor.cs (2)
37
private Task GoLastAsync() => GoToPageAsync(State.
LastPageIndex
.GetValueOrDefault(0));
40
private bool CanGoForwards => State.CurrentPageIndex < State.
LastPageIndex
;