PaginationComponent — reusable page-based navigation for server-side paged data.
Displays "Showing X-Y of Z" summary with first/prev/next/last navigation. Designed for use with RunQuery's StartRow/MaxRows server-side paging.
<mj-pagination [TotalRowCount]="result.TotalRowCount" [PageNumber]="currentPage" [PageSize]="pageSize" [IsLoading]="isLoading" (PageChange)="onPageChange($event)"></mj-pagination> Copy
<mj-pagination [TotalRowCount]="result.TotalRowCount" [PageNumber]="currentPage" [PageSize]="pageSize" [IsLoading]="isLoading" (PageChange)="onPageChange($event)"></mj-pagination>
Whether data is currently loading
Emitted when the user navigates to a different page
Current page number (1-based)
Number of rows per page
Total number of rows across all pages
PaginationComponent — reusable page-based navigation for server-side paged data.
Displays "Showing X-Y of Z" summary with first/prev/next/last navigation. Designed for use with RunQuery's StartRow/MaxRows server-side paging.
Example