12 references to PaginationState
Microsoft.AspNetCore.Components.QuickGrid (12)
Pagination\PaginationState.cs (2)
40internal EventCallbackSubscribable<PaginationState> CurrentPageItemsChanged { get; } = new(); 41internal EventCallbackSubscribable<PaginationState> TotalItemCountChangedSubscribable { get; } = new();
Pagination\Paginator.razor.cs (5)
10/// A component that provides a user interface for <see cref="PaginationState"/>. 14private readonly EventCallbackSubscriber<PaginationState> _totalItemCountChanged; 21/// Specifies the associated <see cref="PaginationState"/>. This parameter is required. 23[Parameter, EditorRequired] public PaginationState State { get; set; } = default!; 36_totalItemCountChanged = new(new EventCallback<PaginationState>(this, null));
QuickGrid.razor.cs (5)
95/// Optionally links this <see cref="QuickGrid{TGridItem}"/> instance with a <see cref="PaginationState"/> model, 99/// that displays and updates the supplied <see cref="PaginationState"/> instance. 101[Parameter] public PaginationState? Pagination { get; set; } 168private readonly EventCallbackSubscriber<PaginationState> _currentPageItemsChanged; 189_currentPageItemsChanged = new(EventCallback.Factory.Create<PaginationState>(this, RefreshDataCoreAsync));