12 references to PaginationState
Microsoft.AspNetCore.Components.QuickGrid (12)
Pagination\PaginationState.cs (2)
39internal EventCallbackSubscribable<PaginationState> CurrentPageItemsChanged { get; } = new(); 40internal EventCallbackSubscribable<PaginationState> TotalItemCountChangedSubscribable { get; } = new();
Pagination\Paginator.razor.cs (5)
9/// A component that provides a user interface for <see cref="PaginationState"/>. 13private readonly EventCallbackSubscriber<PaginationState> _totalItemCountChanged; 16/// Specifies the associated <see cref="PaginationState"/>. This parameter is required. 18[Parameter, EditorRequired] public PaginationState State { get; set; } = default!; 31_totalItemCountChanged = new(new EventCallback<PaginationState>(this, null));
QuickGrid.razor.cs (5)
94/// Optionally links this <see cref="QuickGrid{TGridItem}"/> instance with a <see cref="PaginationState"/> model, 98/// that displays and updates the supplied <see cref="PaginationState"/> instance. 100[Parameter] public PaginationState? Pagination { get; set; } 148private readonly EventCallbackSubscriber<PaginationState> _currentPageItemsChanged; 157_currentPageItemsChanged = new(EventCallback.Factory.Create<PaginationState>(this, RefreshDataCoreAsync));