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