alfresco-ng2-components/docs/process-services/select-apps-dialog.component.md

832 B

Title, Added, Status
Title Added Status
Select App Component v2.0.0 Active

Select App Component

Shows all available apps and returns the selected app.

select-apps-dialog

Basic Usage

import { SelectAppsDialogComponent } from '@alfresco/adf-process-services';

constructor(private dialog: MatDialog) {
}
   
startSelectDialog(){
   const dialogRef = this.dialog.open(SelectAppsDialogComponent, {
       width: '630px',
       panelClass: 'adf-version-manager-dialog'
   });
   
   dialogRef.afterClosed().subscribe(selectedProcess => {
       this.processId = selectedProcess.id;
   });
}

See Also