mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Release Note for 4.2 - Initial draft. * update dep * documentation * fix * remove script * lint Co-authored-by: Eugenio Romano <eugenio.romano@alfresco.com> Co-authored-by: Eugenio Romano <eromano@users.noreply.github.com>
33 lines
1008 B
Markdown
33 lines
1008 B
Markdown
---
|
|
Title: Form Definition Selector Cloud
|
|
Added: v3.3.0
|
|
Status: Active
|
|
---
|
|
|
|
# [Form Definition Selector Cloud](../../../lib/process-services-cloud/src/lib/form/components/form-definition-selector-cloud.component.ts "Defined in form-definition-selector-cloud.component.ts")
|
|
|
|
Allows one form to be selected from a dropdown list. For forms to be displayed in this component they will need to be compatible with standAlone tasks.
|
|
|
|
## Basic Usage
|
|
|
|
```html
|
|
<adf-cloud-form-definition-selector
|
|
[appName]="'simple-app'"
|
|
(selectForm)="onFormSelect($event)">
|
|
</adf-cloud-form-definition-selector>
|
|
```
|
|
|
|
## Class members
|
|
|
|
### Properties
|
|
|
|
| Name | Type | Default value | Description |
|
|
| --- | --- | --- | --- |
|
|
| appName | `string` | "" | Name of the application. If specified, this shows the users who have access to the app. |
|
|
|
|
### Events
|
|
|
|
| Name | Type | Description |
|
|
| --- | --- | --- |
|
|
| selectForm | [`EventEmitter`](https://angular.io/api/core/EventEmitter)`<string>` | Emitted when a form is selected. |
|