ant-design-blazor/components/pagination/PaginationOptions.razor

25 lines
667 B
C#
Raw Normal View History

@namespace AntDesign
@inherits AntDomComponentBase
@*<nz-select
class="ant-pagination-options-size-changer"
*ngIf="showSizeChanger"
[nzDisabled]="disabled"
[nzSize]="nzSize"
[ngModel]="pageSize"
(ngModelChange)="onPageSizeChange($event)"
>
<nz-option
*ngFor="let option of listOfPageSizeOption; trackBy: trackByOption"
[nzLabel]="option.label"
[nzValue]="option.value"
></nz-option>
</nz-select>*@
@if (ShowQuickJumper)
{
<div class="ant-pagination-options-quick-jumper">
<input disabled="@Disabled" @bind="_inputValue" @onkeyup="JumpToPageViaInput"/>
</div>
}