7 references to LastPageIndex
Microsoft.AspNetCore.Components.QuickGrid (7)
_generated\1\Paginator_razor.g.cs (3)
210
__builder.AddContent(43, State.
LastPageIndex
+ 1
250
CanGoForwards ? GetPageUrl(State.
LastPageIndex
.GetValueOrDefault(0)) : null
352
__builder.AddContent(90, State.
LastPageIndex
+ 1
Pagination\PaginationState.cs (2)
69
if (CurrentPageIndex > 0 && CurrentPageIndex >
LastPageIndex
)
73
return SetCurrentPageIndexAsync(
LastPageIndex
.Value);
Pagination\Paginator.razor.cs (2)
51
private Task GoLastAsync() => GoToPageAsync(State.
LastPageIndex
.GetValueOrDefault(0));
54
private bool CanGoForwards => State.CurrentPageIndex < State.
LastPageIndex
;