12 references to PaginationState
Microsoft.AspNetCore.Components.QuickGrid (12)
Pagination\PaginationState.cs (2)
40
internal EventCallbackSubscribable<
PaginationState
> CurrentPageItemsChanged { get; } = new();
41
internal EventCallbackSubscribable<
PaginationState
> TotalItemCountChangedSubscribable { get; } = new();
Pagination\Paginator.razor.cs (5)
10
/// A component that provides a user interface for <see cref="
PaginationState
"/>.
14
private 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; }
168
private readonly EventCallbackSubscriber<
PaginationState
> _currentPageItemsChanged;
189
_currentPageItemsChanged = new(EventCallback.Factory.Create<
PaginationState
>(this, RefreshDataCoreAsync));