mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
* fix: added PagingSummaryTemplate as replacement for PagingSummaryFormat * In `DataGridPagerApi.razor`, added a `PagingSummaryTemplate` within the `RadzenDataGrid` component to provide a visual summary of the current page and total records displayed.
11 lines
401 B
C#
11 lines
401 B
C#
namespace Radzen.Blazor
|
|
{
|
|
/// <summary>
|
|
/// Represents paging information.
|
|
/// </summary>
|
|
/// <param name="CurrentPage">The current page number.</param>
|
|
/// <param name="NumberOfPages">The total number of pages.</param>
|
|
/// <param name="TotalCount">The total count of items.</param>
|
|
public record PagingInformation(int CurrentPage, int NumberOfPages, int TotalCount);
|
|
}
|