8 references to ItemsPerPage
Microsoft.AspNetCore.Components.QuickGrid (8)
_generated\2\QuickGrid_razor.g.cs (1)
430while (rowIndex++ < initialRowIndex + Pagination.ItemsPerPage)
Pagination\PaginationState.cs (2)
32public int? LastPageIndex => (TotalItemCount - 1) / ItemsPerPage; 45=> HashCode.Combine(ItemsPerPage, CurrentPageIndex, TotalItemCount);
QuickGrid.razor.cs (5)
540var startIndex = Pagination is null ? 0 : (Pagination.CurrentPageIndex * Pagination.ItemsPerPage); 542startIndex, Pagination?.ItemsPerPage, _sortByColumn, _sortByAscending, thisLoadCts.Token); 574startIndex += Pagination.CurrentPageIndex * Pagination.ItemsPerPage; 575count = Math.Min(request.Count, Pagination.ItemsPerPage - request.StartIndex); 589_ariaBodyRowCount = Pagination is null ? providerResult.TotalItemCount : Pagination.ItemsPerPage;