BlazorPaginationComponent 1.2.0
Install-Package BlazorPaginationComponent -Version 1.2.0
dotnet add package BlazorPaginationComponent --version 1.2.0
<PackageReference Include="BlazorPaginationComponent" Version="1.2.0" />
paket add BlazorPaginationComponent --version 1.2.0
#r "nuget: BlazorPaginationComponent, 1.2.0"
// Install BlazorPaginationComponent as a Cake Addin
#addin nuget:?package=BlazorPaginationComponent&version=1.2.0
// Install BlazorPaginationComponent as a Cake Tool
#tool nuget:?package=BlazorPaginationComponent&version=1.2.0
BlazorPaginationExample
Example for using the BlazorPaginationComponent nuget package can be found here .
The code of the component can be found here.
Install the BlazorPaginationComponent
The NuGet package can be installed from NuGet or by using the following command in the Package Manager Consol: Install-Package BlazorPaginationComponent -Version 1.2.0
Import the component
Add @using BlazorPaginationComponent to the _Imports file in the root folder.
Define your custom page model
public class PageModel<T>
{
public IList<T> Entities { get; set; }
public PaginationModel PaginationModel { get; set; }
}
public class PaginationModel
{
public int TotalItems { get; set; }
public int CurrentPage { get; set; }
public int PageSize { get; set; }
}
Define the CallBack for the OnPageChange event
The BlazorPaginationComponent defines an EvenCallback<int> called OnPageChange. This will fire each time the user selects a new page. In your component you should define the logic which has to be executed when the user selects a new page.
For example:
public async Task LoadPage(int page)
{
this.PageModel = await await this._httpClient.GetJsonAsync<PageModel<T>>('url');
}
Use the component
<div class>
<PaginationComponent TotalItems="@PageModel.PaginationModel.TotalItems"
CurrentPage="@PageModel.PaginationModel.CurrentPage"
PageSize="@PageModel.PaginationModel.PageSize"
OnePageChange="LoadPage"></PaginationComponent>
</div>
Note: You can use the CustomClass parameter of the component to change the style of the page buttons.
Fixes
Correct typos: OnePageChange renamed to OnPageChange.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- Microsoft.AspNetCore.Blazor.HttpClient (>= 3.0.0-preview8.19405.7)
- Microsoft.AspNetCore.Components (>= 3.0.0-preview8.19405.7)
- Microsoft.AspNetCore.Components.Web (>= 3.0.0-preview8.19405.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.