mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* fix translations form * fix style webpack script * fix tslint error problem in viewer * fix naming problems in attach file widget * add start process form values data initialization option * fix translation problems * missing return type * start process name configuration * add CS cross PS configuration * start process from file example * fix minor issues * add documentation and move the dialog in a separate component * easy test select app * alfrescoRepositoryName right property * file conversion test * fix issue after CR * Remove forgotten semicolon.
27 lines
592 B
Markdown
27 lines
592 B
Markdown
# Select app Component
|
|
|
|
Shows all available apps and give you back the selected app.
|
|
|
|

|
|
|
|
## Basic Usage
|
|
|
|
```ts
|
|
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;
|
|
});
|
|
}
|
|
|
|
```
|