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