8 references to LastPageIndex
Microsoft.AspNetCore.Components.QuickGrid (8)
_generated\1\Paginator_razor.g.cs (4)
228__builder.AddContent(45, State.LastPageIndex + 1 242GetPageUrl(Math.Min(State.LastPageIndex ?? 0, State.CurrentPageIndex + 1)) 277GetPageUrl(State.LastPageIndex ?? 0) 388__builder.AddContent(94, State.LastPageIndex + 1
Pagination\PaginationState.cs (2)
69if (CurrentPageIndex > 0 && CurrentPageIndex > LastPageIndex) 73return SetCurrentPageIndexAsync(LastPageIndex.Value);
Pagination\Paginator.razor.cs (2)
51private Task GoLastAsync() => GoToPageAsync(State.LastPageIndex.GetValueOrDefault(0)); 54private bool CanGoForwards => State.CurrentPageIndex < State.LastPageIndex;