mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
[ADF-2201] Tidied Start Process docs (#2864)
* [ADF-2201] Tidied Start Process docs * [ADF-2201] Removed file with probably incorrect name
This commit is contained in:
committed by
Eugenio Romano
parent
c66115fe70
commit
441d1e648e
29
docs/select-apps-dialog.component.md
Normal file
29
docs/select-apps-dialog.component.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# Select app Component
|
||||
|
||||
Show all available apps and return 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;
|
||||
});
|
||||
}
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [Start process component](start-process.component.md)
|
Reference in New Issue
Block a user