7 references to LastPageIndex
Microsoft.AspNetCore.Components.QuickGrid (7)
_generated\1\Paginator_razor.g.cs (3)
210__builder.AddContent(43, State.LastPageIndex + 1 250CanGoForwards ? GetPageUrl(State.LastPageIndex.GetValueOrDefault(0)) : null 352__builder.AddContent(90, 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;