pager v1.

This commit is contained in:
David Lebee
2021-08-24 12:41:42 -04:00
parent b880876e4c
commit 0bd428ed97
8 changed files with 160 additions and 3 deletions
@@ -29,6 +29,9 @@
</div>
<div *psListViewFooter class="mt-2">
<psbx-ds-pagination [dataSource]="merchantDataSource"></psbx-ds-pagination>
<ps-ds-pager class="mt-2" [dataSource]="merchantDataSource"></ps-ds-pager>
<ps-ds-pager class="mt-2" range="0" [dataSource]="merchantDataSource"></ps-ds-pager>
</div>
</ps-list-view>
@@ -40,7 +40,7 @@ export class ListViewDemoHomeComponent implements OnInit {
ngOnInit(): void {
this.merchantDataSource.query({
pageSize: 6
pageSize: 2
})
}
@@ -7,6 +7,7 @@ import { ListViewModule } from '@poweredsoft/ngx-cdk-ui';
import { FormGroupCommandModalModule, PaginationModule } from '@poweredsoft/ngx-bootstrap';
import { ReactiveFormsModule } from '@angular/forms';
import { DsSearchModule } from 'projects/poweredsoft/ngx-cdk-ui/src/lib/ds-search/ds-search.module';
import { DsPagerModule } from 'projects/poweredsoft/ngx-cdk-ui/src/public-api';
@@ -19,7 +20,8 @@ import { DsSearchModule } from 'projects/poweredsoft/ngx-cdk-ui/src/lib/ds-searc
PaginationModule,
ReactiveFormsModule,
FormGroupCommandModalModule,
DsSearchModule
DsSearchModule,
DsPagerModule
]
})
export class ListViewDemoModule { }