mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
737 B
38 lines
737 B
@page
|
|
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.PaginatorModel
|
|
@{
|
|
ViewData["Title"] = "Paginator";
|
|
}
|
|
|
|
<h2>Paginator</h2>
|
|
|
|
<h4># Paginator Examples</h4>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
|
|
<abp-paginator model="@Model.PagerModel" />
|
|
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-paginator model="Model.PagerModel"/>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
|
|
<abp-paginator model="@Model.PagerModel" show-info="true" />
|
|
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-paginator model="Model.PagerModel" show-info="true"/>
|
|
</pre>
|
|
</div>
|
|
</div>
|