ant-design-blazor/components/pagination/PaginationOptions.razor
James Yeung 538568c801 feat: add component pagination (#130)
* feat: add pagination basic

* feat: add demos for pagination

* fix: resources
2020-05-19 17:54:16 +08:00

25 lines
667 B
C#

@namespace AntBlazor
@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>
}