Created
July 18, 2018 03:32
-
-
Save ZackDeRose/5ea47fbef7ce7c03dcb763814e5772af to your computer and use it in GitHub Desktop.
Pagination template snippet for "Angular CDK Tables" article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ngb-pagination | |
[collectionSize]="tableDataSource$.value.length" | |
[pageSize]="pageSize$.value" | |
[page]="currentPage$.value" | |
(pageChange)="currentPage$.next($event)"> | |
</ngb-pagination> | |
<table cdk-table [dataSource]="dataOnPage$" class="table table-hover"> | |
<!-- ... -> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment