1 write to TotalItemCount
Microsoft.AspNetCore.Components.QuickGrid (1)
GridItemsProviderResult.cs (1)
41=> new() { Items = items, TotalItemCount = totalItemCount };
4 references to TotalItemCount
Microsoft.AspNetCore.Components.QuickGrid (4)
GridItemsProviderResult.cs (1)
38/// <param name="totalItemCount">The total numer of items that exist. See <see cref="GridItemsProviderResult{TGridItem}.TotalItemCount"/> for details.</param>
QuickGrid.razor.cs (3)
314Pagination?.SetTotalItemCountAsync(result.TotalItemCount); 354_ariaBodyRowCount = Pagination is null ? providerResult.TotalItemCount : Pagination.ItemsPerPage; 356Pagination?.SetTotalItemCountAsync(providerResult.TotalItemCount);