05-27-2021 05:30 PM
Hi,
is-it possible to add button that reloads the viewer (to check an edition) ?
<adf-viewer *ngIf="!isRefreshing"
[nodeId]="nodeRef"
[displayName]="docName"
[allowDownload]="false"
[allowFullScreen]="false"
[allowGoBack]="false"
[allowRightSidebar]="true"
[showRightSidebar]="false"
[sidebarRightTemplate]="sidebarTemplate"
[thumbnailsTemplate]="customThumbnailsTemplate"
>
<adf-viewer-toolbar-actions >
<button class="btn" mat-icon-button title="Rafraîchir" (click)="refreshDocument()">
<mat-icon>replay</mat-icon>
</button>
</adf-viewer-toolbar-actions>
</adf-viewer>
Here is my function :
refreshDocument() {
console.log('refreshDocument');
// actualisation du document après édition
this.isRefreshing = true;
.....bla bla bla......
this.isRefreshing = false;
}
But it doesn't work
thank you in advance
Explore our Alfresco products with the links below. Use labels to filter content by product module.