The number of items or pages to display per page.
<NVPagination @bind-CurrentPage="_tempModelInt"
PageSize="10"
NumberOfItems="100">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The total count of items or pages that the pagination should handle.
<NVPagination @bind-CurrentPage="_tempModelInt"
PageSize="10"
NumberOfItems="100">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The text label for the previous button.
<NVPagination @bind-CurrentPage="_tempModelInt"
PreviousButtonLabel="Prev">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The text label for the next button.
<NVPagination @bind-CurrentPage="_tempModelInt"
NextButtonLabel="Something">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The theme color of the pagination buttons, affecting their appearance in normal and hover states.
<NVPagination @bind-CurrentPage="_tempModelInt"
Color="neutral">
</NVPagination>
<NVPagination @bind-CurrentPage="_tempModelInt"
Color="primary">
</NVPagination>
<NVPagination @bind-CurrentPage="_tempModelInt"
Color="secondary">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
Determines if the pagination component should expand to fill its container's width.
<NVPagination @bind-CurrentPage="_tempModelInt"
WFull>
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The current page number displayed by the pagination component.
<NVPagination @bind-CurrentPage="_tempModelInt">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The number of page buttons to display at the start of the pagination component.
<NVPagination @bind-CurrentPage="_tempModelInt"
NumStartZoneButtons="3">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The number of page buttons to display in the middle part of the pagination, usually around the current page.
<NVPagination @bind-CurrentPage="_tempModelInt"
NumMiddleButtons="5">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}
The number of page buttons to display at the end of the pagination component.
<NVPagination @bind-CurrentPage="_tempModelInt"
NumEndZoneButtons="3">
</NVPagination>
@code {
private int _tempModelInt = 0;
protected override void OnInitialized()
{
_tempModelInt = 1;
}
}