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