4 references to GoToPageAsync
Microsoft.AspNetCore.Components.QuickGrid (4)
Pagination\Paginator.razor.cs (4)
34
private Task GoFirstAsync() =>
GoToPageAsync
(0);
35
private Task GoPreviousAsync() =>
GoToPageAsync
(State.CurrentPageIndex - 1);
36
private Task GoNextAsync() =>
GoToPageAsync
(State.CurrentPageIndex + 1);
37
private Task GoLastAsync() =>
GoToPageAsync
(State.LastPageIndex.GetValueOrDefault(0));