ant-design-blazor/components/pagination/PaginationSimple.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

19 lines
460 B
C#

@namespace AntBlazor
<PaginationItem
Disabled="_isFirstIndex"
OnClick="_=>PrePage()"
Type="prev"
/>
<li title="@(PageIndex + '/' + _lastIndex)" class="ant-pagination-simple-pager">
<input disabled="@Disabled" @bind="@_inputValue" @onkeyup="JumpToPageViaInput" size="3" />
<span class="ant-pagination-slash">/</span>
@_lastIndex
</li>
<PaginationItem
Disabled="_isLastIndex"
OnClick="_=>NextPage()"
Type="next"
/>