hide pagination details from mydspace item detail view

This commit is contained in:
Giuseppe Digilio
2019-04-19 19:23:23 +02:00
parent dfd8a69d10
commit ff7aa335cd
2 changed files with 6 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
[collectionSize]="objects?.payload?.totalElements"
[sortOptions]="sortConfig"
[hideGear]="hideGear"
[hidePaginationDetail]="hidePaginationDetail"
[hidePagerWhenSinglePage]="hidePagerWhenSinglePage"
(pageChange)="onPageChange($event)"
(pageSizeChange)="onPageSizeChange($event)"

View File

@@ -66,6 +66,11 @@ export class ObjectDetailComponent {
return this._objects;
}
/**
* Option for hiding the pagination detail
*/
public hidePaginationDetail = true;
/**
* An event fired when the page is changed.
* Event's payload equals to the newly selected page.