mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-2348] added actions on start and cancel start process buttons (#3543)
This commit is contained in:
@@ -428,7 +428,9 @@
|
|||||||
<div *ngIf="processId">
|
<div *ngIf="processId">
|
||||||
<adf-start-process
|
<adf-start-process
|
||||||
[values]="formValues"
|
[values]="formValues"
|
||||||
[appId]="processId">
|
[appId]="processId"
|
||||||
|
(start)="closeStartProcess()"
|
||||||
|
(cancel)="closeStartProcess()">
|
||||||
</adf-start-process>
|
</adf-start-process>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@@ -474,6 +474,10 @@ export class FilesComponent implements OnInit, OnChanges, OnDestroy {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
closeStartProcess() {
|
||||||
|
this.processId = null;
|
||||||
|
}
|
||||||
|
|
||||||
onChangePageSize(event: Pagination): void {
|
onChangePageSize(event: Pagination): void {
|
||||||
this.preference.paginationSize = event.maxItems;
|
this.preference.paginationSize = event.maxItems;
|
||||||
this.changedPageSize.emit(event);
|
this.changedPageSize.emit(event);
|
||||||
|
Reference in New Issue
Block a user